私は助けてくれてありがとう。本当に受け入れられる解決策は、@Stanislav Palatnikのものでなければなりません。ちょうど私の.htaccessで動作しませんでした。ホスティングサーバーは、私のpublic_htmlにphp.iniを入れて、私にそれを変更させるのに十分なものでした。だから+1を@Stanislav Palatnikは彼は問題を指摘したので。私は誰かが自分の状況で自分自身を見つけた場合に私が共有すると思った興味深い情報も見つけました。同じページに
info from: http://support.godaddy.com/groups/web-hosting/forum/topic/how-to-turn-off-magic_quotes_gpc/
Yes – the solution below worked for me:
(1) First of all do not try to turn off the magic quotes in your .htaccess file, it won’t work on godaddy.
(2) Second, if you’re running PHP5 on your account, rename your php.ini file to php5.ini, make sure it’s in your root folder.
(3) Third, make sure all the lines in your php5.ini file end in a semi colon ;
(4) Fourth, add this line to your php5.ini file:
magic_quotes_gpc = Off;
誰かがそれだけで唯一、magic_quotes_gpcの設定すべきではないと述べたが、以下に示すように、他のものがaswell:
magic_quotes_gpc = Off;
magic_quotes_runtime = Off;
magic_quotes_sybase = Off;
これが誰かを助けた希望を。@Stanislav Palatnikに感謝
戦う秘密忍者マジッククオートは、PHP <5.4スタイルです。 – hakre