解決nginx下php-fpm不記錄php報錯日誌的辦法:1.修改【php-fpm.conf】中配置,沒有則增加;2、修改【php.ini】中配置,沒有則增加;3、重啟【php-fpm】即可。
解決nginx下php-fpm不記錄php封包錯誤日誌的方法:
##1.修改php-fpm.conf中配置,沒有則增加
catch_workers_output = yes error_log = log/error_log
2.修改php.ini中配置,沒有則增加
log_errors = On error_log = "/usr/local/lnmp/php/var/log/error_log" error_reporting=E_ALL&~E_NOTICE
3 .重啟php-fpm
當PHP執行錯誤時就能看到錯誤日誌在"/usr/local/lnmp/php/var/log/error_log"中了#請注意:
1.php-fpm.conf 中的
php_admin_value[error_log]參數會覆寫php.ini中的
error_log 參數
phpinfo()中看到的最終error_log檔案具有可寫入權限並且沒有設定
php_admin_value[error_log]參數,否則錯誤日誌會輸出到
php-fpm的錯誤日誌裡。
phpinfo()結果檢視
error_log = //設定日誌檔名
4.如何將php的錯誤日誌輸出到nginx的錯誤日誌裡 ###在PHP 5.3.8及之前的版本中,透過FastCGI運行的PHP,在使用者存取時出現錯誤,會先寫入到PHP的errorlog中######如果PHP的errorlog無法寫入,則會將錯誤內容傳回給FastCGI接口,然後nginx在收到FastCGI的錯誤返回後記錄到了nginx的errorlog中######在PHP 5.3.9及之後的版本中,出現錯誤後PHP只嘗試寫入PHP的errorlog中,如果失敗則不會再回到FastCGI了,錯誤日誌會輸出到php-fpm的錯誤日誌裡。 ######所以如果想把php錯誤日誌輸出到nginx錯誤日誌,需要使用php5.3.8之前的版本,而設定檔中php的error_log對於php worker進程不可寫##########相關學習推薦:###PHP程式設計從入門到精通##########ini_set("display_errors",0) ini_set("error_reporting",E_ALL); //这个值好像是个PHP的常量 ini_set("error_log","<日志文件名>") ini_set("log_errors",1);登入後複製以上是nginx下php-fpm不記錄php報錯日誌怎麼辦?的詳細內容。更多資訊請關注PHP中文網其他相關文章!