How do I disable magic quotes? (Using .htaccess)

You need to add this line to your htaccess file in the directory where you want to disable magic quotes:

php_flag magic_quotes_gpc off

The .htaccess file is located in your public_html folder on your FTP server.

  • 107 Users Found This Useful
Was this answer helpful?

Related Articles

PHP Fatal error: Cannot redeclare

If you see PHP Fatal error: Cannot redeclare function it means that there is a problem in your...

Got an error about an outdated MySQL version?

When connecting the site to the database, an error occurred telling us that the MySQL version is...

How do I turn off short open tags?

To disable short opening tags, you need to add the following code to your .htaccess file:...

Help, Adsense is not showing

If your ad is not showing, please make sure you paste the code between the "body" tags. If you...

How can I turn off PHP error output?

To disable error output in your script, use: error_reporting (0); Remember that you need to...