If..Else Log

Turn off register_globals

Via Podz: As a security precaution, it's recommended that register_globals is turned off.

Add the following to your .htaccess file:

php_flag register_globals off

More detailed instructions can be found here.

-30-