php.ini sintax

A

Anonymous

Guest
Hi,
The usual syntax is like this:
Code:
register_globals = Off
If you look in php.ini, most of the variables are shown, some of them are commented out with #
Code:
# register_globals = Off - this is a comment

For a module like suhoshin, suphp etc, you need to have a section in your php file e.g.
Code:
[suhoshin]
Suhoshin help is available here: http://www.suhosin.org/stories/configuration.html You may want this section in your php file. DO NOT DO THIS ON A PRODUCTION SERVER unless you deliberately want to bypass the security of suhoshin!
Code:
[suhosin]
suhosin.simulation = On
etc...
-A
 
Back
Top