Saturday, 4 February 2017

php - how to turn off magic quotes in .htaccess file for joomla?

I started using Joomla 3 and now have problems and on searching i found that magic quotes need to be off for it to function correctly.



I put these lines in the .htaccess file



php_value magic_quotes 0
php_flag magic_quotes off
php_value magic_quotes_gpc 0

php_flag magic_quotes_gpc off


and Now I am getting Internal Server Error..



how to disable magic quotes in .htaccess file

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...