GoDaddy 帮助

我们尽最大努力为您翻译此页。 也可以使用英语页面。

安装程序PHP错误日志记录

当排查PHP错误时,您需要检查PHP日志。如果您没有要查看的PHP日志,请使用以下过程设置日志:

Note: For WordPress and Managed WordPress error logging please see 启用 WordPress 调试模式以显示错误
  1. 在对网站进行任何更改之前,您应该始终备份您的网站。
  2. 找到您的PHP初始化文件
  3. Edit the file. (Web Hosting (cPanel) / Windows Hosting (Plesk) / VPS Hosting)
  4. 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.
  5. Make sure to replace /path/to/your/webroot with the actual path your hosting account uses.
  6. What is my absolute path? (Web Hosting (cPanel) / Windows Hosting (Plesk)).
  7. 在主机的webroot中创建名为php_error.log的文件。
  8. Restart your PHP processes.(Web Hosting (cPanel) / Windows Hosting (Plesk)).

后续步骤

更多信息

  • 有关PHP错误日志的更多信息,请访问PHP.net