みんなの助けに感謝します。本当に受け入れられる解決策は、@StanislavPalatnikからのものでなければなりません。.htaccessでは機能しませんでした。ホスティングサーバーは、php.iniをpublic_htmlに入れて、変更できるようにするのに十分な機能を備えていました。それで、彼が問題を指摘したので、@StanislavPalatnikに+1します。また、誰かが私の状況に陥った場合に備えて共有したいと思った興味深い情報も見つけました。
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だけでなく、以下に示すような他のものでもあるべきだと言いました。
magic_quotes_gpc = Off;
magic_quotes_runtime = Off;
magic_quotes_sybase = Off;
これが誰かを助けたことを願っています。@StanislavPalatnikに感謝します