Turn off and disable magic_quotes_gpc in .htaccess

by Yang Yang on May 11, 2010

Share This Article:
Subscribe to Kavoir: blog feed

It’s not only insecure but it inconveniently commands the use of PHP function stripslashes() every time you pull something from the database or when you get something from the client side. While most of the hosts out there are using factory settings of PHP that turn off magic_quotes_gpc by default, there are a few that don’t.

The value of magic_quotes_gpc cannot be set with the ini_set() function after PHP 4.2.3, some hosts enable custom php.ini in your home directory which you can use to set magic_quotes_gpc to 0 (zero) or false. Otherwise, you’d have to resort to .htaccess to set the PHP configuration values for your local directories.

To turn off magic_quotes and magic_quotes_gpc off in .htaccess, simply put these lines in the .htaccess file of your site / directory wherein you want magic_quotes or magic_quotes_gpc disabled:

php_value magic_quotes 0
php_flag magic_quotes off
php_value magic_quotes_gpc 0
php_flag magic_quotes_gpc off
Share This Article:
Subscribe to Kavoir: blog feed

You should also read:

{ 2 comments… read them below or add one }

Nopadol S. February 15, 2011 at 11:23 am

This solution works for me on byethost15 hosting. Thanks you for the solution. Great!

Reply

Julian Perry April 29, 2011 at 7:30 pm

This only works where PHP is loaded as a module.

Reply

Leave a Comment

{ 1 trackback }

Previous post:

Next post: