I use hostgator, I will try my solution: Insert more lines into your .htaccess file: you need to replace the "username" with your user account.
<IfModule mod_suphp.c>
suPHP_ConfigPath /home/username
<Files php.ini>
order allow,deny
deny from all
</Files>
</IfModule>
If you have a php.ini file, add more lines to the php.ini file:
register_globals = Off // O in "Off" is uppercase text
If not, you can create a new php.ini file with the code below:
register_globals = Off // O in "Off" is uppercase text
Note. The .htaccess file and the php.ini file should be placed in the root folder (the top level folder on your hosting).
source
share