設定PHP錯誤記錄
對PHP錯誤進行疑難排解時,您需要檢閱PHP記錄。如果您沒有PHP記錄要檢閱,請透過下列程序設定記錄:
Note: For WordPress and Managed WordPress error logging please see 啟用 WordPress 偵錯模式,以便顯示錯誤資訊。
- 在變更網站之前,您應該先備份網站。
- 找到您的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函式,會通知Web伺服器將您的記錄輸出至新檔案。
/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) ). - 在主機的webroot中建立名為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 。