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'); 

Popular posts from this blog

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -