PHP 오류 로깅 설정
PHP 오류를 해결할 때 PHP 로그를 검토하는 것이 좋습니다. 검토 할 PHP 로그가없는 경우 다음 프로세스를 사용하여 로깅을 설정합니다.
Note: For WordPress and Managed WordPress error logging please see 워드프레스 디버그 모드를 활성화하여 오류를 표시하세요.
- 사이트 를 변경하기 전에 항상 사이트를 백업해야합니다.
- PHP 초기화 파일을 찾습니다 .
- Edit the file. (Web Hosting (cPanel) / Windows Hosting (Plesk) / VPS Hosting)
- Place the following line in your initialization file:
error_log = /path/to/your/webroot/php_error.log
- error_log 는 로그를 새 파일로 출력하도록 웹 서버에 지시하는 PHP 함수입니다.
/path/to/your/webroot/php_error.log
is the path to your new log.
- Make sure to replace
/path/to/your/webroot
with the actual path your hosting account uses. - What is my absolute path? (
Web Hosting (cPanel) / Windows Hosting (Plesk) ). - 호스팅의 웹 루트에 php_error.log 라는 이름의 파일을 만듭니다.
- Restart your PHP processes.(
Web Hosting (cPanel) / Windows Hosting (Plesk) ).
다음 단계
- Review your php_error.log for error details. (
Web Hosting (cPanel) / Windows Hosting (Plesk) / VPS Hosting )
상세 정보
- PHP 오류 로그에 대한 자세한 내용은 PHP.net을 참조 하세요.