Knowledgebase
How can i turn on register_globals?
Posted by PremiumReseller.com on 17 June 2008 03:12 PM

How can i turn on register_globals?

Please create a php.ini file with content

register_globals = ON

then upload php.ini file to public_html folder.

That will turn on register_globals for your website.

You can create a php info page (info.php) to check php settings

<?php

// Show all information, defaults to INFO_ALL
phpinfo();

?>

This method works on Windows 2003 as well (upload php.ini file to wwwroot folder)

(359 vote(s))
This article was helpful
This article was not helpful