|
How can I set REGISTER_GLOBALS to OFF?
|
|
Joomla recommends that this setting is OFF due to security concerns. Here is how you can set it: in your .htaccess or htaccess.txt file, enter the following:
php_flag register_globals off
If you have a php.ini file, put in the following:
register_globals = off
In addition, you may want to turn off register globals emulation in your globals.php file:
Make sure it says somewhere
define('RG_EMULATION',0)
|