E ebaystar New member Joined Jun 24, 2005 Messages 1 Jun 24, 2005 #1 I need to know how to turn register globals on for just one user. I have been told that having it on is bad or something, so I need to change it for one user. I would appreciate any help. Thanks.
I need to know how to turn register globals on for just one user. I have been told that having it on is bad or something, so I need to change it for one user. I would appreciate any help. Thanks.
B ballyn Verified User Joined Feb 7, 2005 Messages 254 Location Boston, MA Jun 24, 2005 #2 Create a .htaccess file in the document root (public_html, e.g.) with this line: Code: php_value "register_globals" "1" Note that users can do this themselves, so while turning it off globally is a good idea IMHO, it can be easily overridden.
Create a .htaccess file in the document root (public_html, e.g.) with this line: Code: php_value "register_globals" "1" Note that users can do this themselves, so while turning it off globally is a good idea IMHO, it can be easily overridden.