To turn register globals off, you will need to change the settings in the php.ini file to:
register_globals = Off
Note the upper case letter O in Off.
Same steps apply to all other php settings. (e.g. magic_quotes, auto_append, allow_url_fopen)
It is recommended that you modify the existing default php.ini file in your home directory, if one exists. If not, we can upload a pre-made php.ini file for you, and you may change it as you need. Simply contact HostGator via live chat or phone.
Instead of having us create and setup the php.ini file for you, you can place your php.ini file in your Home Directory (/home/username/) yourself and then add this code to your primary .htaccess (/home/username/public_html/.htaccess). Be sure to replace "username" with your actual cPanel user name.
<IfModule mod_suphp.c>
suPHP_ConfigPath /home/username
<Files php.ini>
order allow,deny
deny from all
</Files>
</IfModule>


