Flipkart

Wednesday, April 21, 2010

Drupal: Turn off Register_Globals

Method 1

Place a file called php.ini in your accounts root directory with the following content: register_globals = false (you can also try using 'off', or '0'instead of 'false').

Method 2

Place a file called .htaccess in your acccounts root directory with the following content:
php_flag register_globals off

No comments:

Post a Comment