关于FastCGI下PHP无法显示错误信息的问题的解决办法

[ 2010-03-01 16:35:57 | 作者: admin ]
字号: | |
在IIS+FastCGI中配置PHP后,如果php源文件中存在错误,则不论是什么错误,FastCGI都会返回内部服务器错误500的信息,这给程序调试带来了麻烦。解决这个问题的办法如下:
        打开PHP的配置文件php.ini,并做如下配置修改:

      short_open_tag = On
      fastcgi.logging = 0
        log_errors = On
        error_reporting = E_ALL
        error_log = "C:\Windows\Temp\php-errors.log"

        需要确保"C:\Windows\Temp"就是系统Temp路径,这样以来如果是PHP组件出现错误,就可以在C:\Windows\Temp\php-errors.log文件中看到错误提示,如果PHP的warning或notice则在浏览器中会看到详细出错信息并且在php-errors.log文件中也可以看到出错信息了。
评论Feed 评论Feed: http://blog.xg98.com/feed.asp?q=comment&id=1349

这篇日志没有评论。

此日志不可发表评论。