Hi,
My Host Have Some Problems Since Yesterday
I Can't access my wordpress administration site,i can't delete any file using dolphin file manager,and i can't use fopen() function.
am i done a work against the law of x10hosting?
Hi,
My Host Have Some Problems Since Yesterday
I Can't access my wordpress administration site,i can't delete any file using dolphin file manager,and i can't use fopen() function.
am i done a work against the law of x10hosting?
Your website isn't suspended, so we are not blocking your site from working. Are you receiving errors for any of these things?
It sounds to me like a permission problem.
gjr.gr - coming soon: secrets of OCD coding from a self taught tinkerer
it's the ERR:
URL file-access is disabled in the server configuration in /home/hpx/public_html/addons/page/2.php on line 24
and this:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /home/hpx/public_html/BETU-COMPUTER.TK/wp-includes/registration.php on line 207
This is due to he configuration of the server, which cannot be changed. This addon may have to be disabled.
This is an infinite loop error in your program, most likely. You can see that you have 32MB of memory (33554432B) and you are using more than that somehow. Usually this happens when an infinite loop occurs in which more memory is allocated every loop. You may have to contact the author of the software to find out why an infinite loop condition would occur. This may also be due to the restrictions on remote file access.
gjr.gr - coming soon: secrets of OCD coding from a self taught tinkerer
unlink() and fopen() can both be blocked because of remote files, which may be a fatal error. It may be that you haven't used the software in a way to trigger the error, and now the software is stuck in that error.
I would have to look at the code in your files to tell you whether it is trying to do something that is blocked or not.
gjr.gr - coming soon: secrets of OCD coding from a self taught tinkerer