Disable Magic Quotes GPC

0

I am installing version 3.0 of Joomla and I need the Magic Quotes GPC to be disabled. I want to know how to do this.

    
asked by anonymous 17.12.2015 / 14:25

1 answer

1

If you are in a hosting, you can go to the php.ini file in the magic_quotes_gpc line and put magic_quotes_gpc = Off that it will be disabled at the time, you can also do this through .htaccess, follow the code:

php_flag magic_quotes_gpc Off
    
17.12.2015 / 14:39