07月16, 2018

开启php-fpm及php错误日志

一、修改php-fpm.conf中的配置

[global]
error_log = log/php_error_log
[www]
catch_workers_output = yes


二、修改php.ini中配置

log_errors = On
error_log = "/usr/local/php/var/log/error_log"
error_reporting=E_ALL&~E_NOTICE


三、重启php-fpm

当PHP执行错误时就能看到错误日志在”/usr/local/lnmp/php/var/log/php_error_log”中了

本文链接:https://lxyit.com/article/show/139.html

-- EOF --