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

Jmnote (토론 | 기여)님의 2019년 9월 27일 (금) 23:08 판 (→‎같이 보기)
미디어위키 오류 메시지
미디어위키 디버그 하기
미디어위키 디버그 모드

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 }}