1
CS_Swan
turning off magic quotes
  • 2009/1/6 22:59

  • CS_Swan

  • Just popping in

  • Posts: 28

  • Since: 2008/11/28


can anyone tell me how to turn off magic quotes?? in system overview?

2
ghia
Re: turning off magic quotes
  • 2009/1/7 0:37

  • ghia

  • Community Support Member

  • Posts: 4953

  • Since: 2008/7/3 1


depending on your environment and permissions, you can disable it in php.ini:
magic_quotes_gpc Off
magic_quotes_runtime 
Off
or with .htaccess eg:
php_flag magic_quotes_gpc Off
Also some php directives in the beginning of your php file are possible:
ini_set("magic_quotes_gpc""0");
set_magic_quotes_runtime(1);





3
CS_Swan
Re: turning off magic quotes
  • 2009/1/7 2:16

  • CS_Swan

  • Just popping in

  • Posts: 28

  • Since: 2008/11/28


Thank you very much