主机优惠
信息分享

The FastCGI Handler was unable to process the request可能解决的方法

只有使用Windows2003的伙伴们都知道,II6的FastCGI模块可以支持php5.3以上的版本,所有如果你是自己配置web环境的,而不是使用什么一键安装或者什么网站管理助手配置的,对于FastCGI怎么安装在这不过多强调啦!下载可以到微软下载,下面简单说说配置吧!

1、注册 PHP到FastCGI
在命令行下运行

cscript fcgiconfig.js -add -section:”PHP” -extension:php -path:”D:/PHP/php-cgi.exe“(红色部分的路径修改为自己的)

fcgiconfig.js 默认存放目录是:C:/WINDOWS/system32/inetsrv

2、设置
将D:/PHP/php.ini- recommended重命名为为D:/PHP/php.ini(路径与自己安装的一致)
打开D:/PHP/php.ini,修改:

extension_dir = “D:/PHP/ext”
fastcgi.impersonate = 1
cgi.fix_pathinfo=1
cgi.force_redirect = 0

其它根据实际需要对php.ini进行设置修改
然后执行:

cscript fcgiconfig.js -set -section:”PHP” -InstanceMaxRequests:500
cscript fcgiconfig.js -set -section:”PHP” -EnvironmentVars:PHP_FCGI_MAX_REQUESTS:1000

以上两项 设置最大池和响应连接数,可以根据运行机器的硬件配置、使用情况修改

一切完毕之后重启IIS,赶紧写一个测试页试一下吧.

如果出现以下错误

FastCGI Error
The FastCGI Handler was unable to process the request.
——————————————————————————–

Error Details:

The FastCGI process exceeded configured activity timeout
Error Number: 258 (0x80070102).
Error Description: ????????×÷???±??
HTTP Error 500 – Server Error.
Internet Information Services (IIS)

从红色关键词可以看出FastCGI超时,打开C:/WINDOWS/system32/inetsrv/fcgiext.ini,添加或修改 以下内容

[Types]
php=PHP

[PHP]
ExePath=C:/PHP/php-cgi.exe
InstanceMaxRequests=10000
EnvironmentVars=PHP_FCGI_MAX_REQUESTS:10000
RequestTimeout=500
ActivityTimeout=900

如果出现这样的提示

FastCGI ErrorThe 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)

这样可能是由于Microsoft .NET Framework 3.5没有安装,安装一下也许可以解决问题!

以上是小七在使用过程中出现的问题,以及自己不停的找到的解决办法,整理了一下,比较乱!

赞(0)
欢迎转载:VPS推荐网 » The FastCGI Handler was unable to process the request可能解决的方法