FastCGI 的常见Error错误
我们在配置服务器的时侯经常会遇到FastCGI Error的错误,如: 5 (0x80070005)、2147467259(0x80004005)、1413 (0x80070585)、-1073741819 (0xc0000005)等,那么我们应该怎么解决这些错误呢?
首先,运行D:\PHP\如果能进入命令窗口并只有光标,说明FastCGI能正常调用php-cgi,再以下错误解决方法,很重要。
首先,运行D:\PHP\如果能进入命令窗口并只有光标,说明FastCGI能正常调用php-cgi,再以下错误解决方法,很重要。
错误1
FastCGI Error
The FastCGI Handler was unable to process the request.
--------------------------------------------------------------------------------
Error Details:
The FastCGI process exited unexpectedly
Error Number: -2147467259 (0x80004005).
FastCGI Error
The FastCGI Handler was unable to process the request.
--------------------------------------------------------------------------------
Error Details:
The FastCGI process exited unexpectedly
Error Number: -2147467259 (0x80004005).
Error Description: 未指定的错误
HTTP Error 500 - Server Error.
Internet Information Services (IIS)
HTTP Error 500 - Server Error.
Internet Information Services (IIS)
搜索: register_globals = Off (约第705行)将Off更改为 On,该行的注释符,即前面的分号”;”去掉,使该行在php.ini文档中起作用,即得到 register_globals = On ;
注:这个对于PHP的全局变量功能,考虑有很多PHP程序需要全局变量功能所以打开,打开后请注意PHP程序的严谨性,如果不需要全局变量功能,或者出错,请保持默认Off状态。
注:这个对于PHP的全局变量功能,考虑有很多PHP程序需要全局变量功能所以打开,打开后请注意PHP程序的严谨性,如果不需要全局变量功能,或者出错,请保持默认Off状态。
错误2
FastCGI Error
The FastCGI Handler was unable to process the request.
--------------------------------------------------------------------------------
error details:
error number: 5 (0x80070005).
FastCGI Error
The FastCGI Handler was unable to process the request.
--------------------------------------------------------------------------------
error details:
error number: 5 (0x80070005).
error description: 拒绝访问。
http error 500 - server error.
internet information services (iis)
这个错误是由于在解压php之后,没有对iis启动帐户(或Users用户组)赋予该目录的读取和运行权限,修改文件夹安全属性(即php安装目录文件夹 -> 右键 -> 属性 -> 安全 -> 权限为完全控制),问题解决!
http error 500 - server error.
internet information services (iis)
这个错误是由于在解压php之后,没有对iis启动帐户(或Users用户组)赋予该目录的读取和运行权限,修改文件夹安全属性(即php安装目录文件夹 -> 右键 -> 属性 -> 安全 -> 权限为完全控制),问题解决!
错误3
FastCGI Error
The FastCGI Handler was unable to process the request.
--------------------------------------------------------------------------------
Error Details:
Could not find entry for "php" on site 1960240566 in [Types] section.
Error Number: 1413 (0x80070585).
Error Description: 未指定的错误
HTTP Error 500 - Server Error.
exited
FastCGI Error
The FastCGI Handler was unable to process the request.
--------------------------------------------------------------------------------
Error Details:
Could not find entry for "php" on site 1960240566 in [Types] section.
Error Number: 1413 (0x80070585).
Error Description: 未指定的错误
HTTP Error 500 - Server Error.
exited
Internet Information Services (IIS)
即说明没有安装成功!请按照fcgiext.ini 修改配置即可!!
即说明没有安装成功!请按照fcgiext.ini 修改配置即可!!
错误4
FastCGI Error
The FastCGI Handler was unable to process the request.
--------------------------------------------------------------------------------
Error Details:
The FastCGI process exited unexpectedly
Error Number: -1073741819 (0xc0000005).
Error Description: Unknown Error
HTTP Error 500 - Server Error.
Internet Information Services (IIS)
原因一:
FastCGI Error
The FastCGI Handler was unable to process the request.
--------------------------------------------------------------------------------
Error Details:
The FastCGI process exited unexpectedly
Error Number: -1073741819 (0xc0000005).
Error Description: Unknown Error
HTTP Error 500 - Server Error.
Internet Information Services (IIS)
原因一:
我 的PHP目录在C盘,当时配php.ini的时候就在那个安装目录编辑好,再复制到windows目录下的...结果恰恰是C:\PHP\php.ini 这个"备份"文件的存在 干扰了FastCGI的运行,总是提示我。把 C:\php\php.ini 删除,搞定!
原因二:
如果ext目录中没有php.ini文件里面设置的文件,也会报这个错误。
原因三:
也可能是系统缺少文件,一个朋友碰到的是缺少msvcr71.dll,是在直接运行php目录下面的文件的时候提示的不到这个文件。
原因二:
如果ext目录中没有php.ini文件里面设置的文件,也会报这个错误。
原因三:
也可能是系统缺少文件,一个朋友碰到的是缺少msvcr71.dll,是在直接运行php目录下面的文件的时候提示的不到这个文件。
原文:www.liudao51/post/99.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论