Is register globals disabled

Read more about register_globals at php.net/register_globals

Due to security issues register_globals are disabled since PHP 4.2.

If you really needs register_globals enabled for your site to work and cannot change the code, there’s a way to enable it on our UNIX servers. Create a file named .htaccess in the directory and put the following in it:

php_flag register_globals on

Was this article helpful?

Related Articles