安装程序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 。