php - Change 'magic_quotes_gpc = On' in web.config -
how change property magic_quotes_gpc = on
magic_quotes_gpc = off
in web.config file? it's server iis, , can not edit php.ini.
i tried adding below htaccess.txt file, doesn't work.
php_flag magic_quotes_gpc off php_value magic_quotes_gpc off
this work (in php)
ini_set('magic_quotes_gpc', 'off');