미디어위키 오류 메시지 표시

Jmnote bot (토론 | 기여)님의 2020년 11월 2일 (월) 02:59 판 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
미디어위키 오류 메시지
미디어위키 디버그 하기
미디어위키 디버그 모드

1 내용[ | ]

  • LocalSettings.php 맨아래에 다음 내용 추가
  • 오류 확인시에만 잠깐 설정했다가 원복하도록 하자.
$wgShowExceptionDetails = true;
error_reporting( -1 );
ini_set( 'display_errors', 1 );
  • 위 설정만으로 내용이 충분치 않다면...
$wgShowExceptionDetails = true;
$wgDebugToolbar = true;
$wgShowDebug = true;
$wgDevelopmentWarnings = true;
error_reporting( -1 );
ini_set( 'display_errors', 1 );

2 같이 보기[ | ]

3 참고[ | ]

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