MediaWiki does not function when magic quotes are enabled. Please see the PHP Manual for help on how to disable magic quotes.

Jmnote (토론 | 기여)님의 2015년 8월 31일 (월) 14:32 판 (새 문서: ==문제상황== <source lang='text'> MediaWiki does not function when magic quotes are enabled. Please see the PHP Manual for help on how to disable magic quotes. </source> ==확...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 문제상황

MediaWiki does not function when magic quotes are enabled. Please see the PHP Manual for help on how to disable magic quotes.

2 확인

[root@zetawiki ~]# cat /etc/php.ini | grep magic
[root@zetawiki ~]# php -i | grep magic_quotes
magic_quotes_gpc => On => On
magic_quotes_runtime => Off => Off
magic_quotes_sybase => Off => Off

3 변경

  • /etc/php.ini를 열어 하단에 내용 추가
[root@zetawiki ~]# vi /etc/php.ini
magic_quotes_gpc = Off

4 확인 2

[root@zetawiki ~]# php -i | grep magic_quotes
magic_quotes_gpc => Off => Off
magic_quotes_runtime => Off => Off
magic_quotes_sybase => Off => Off

5 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}