IIS6+fastcgi下PHP運行超時問題解決辦法;使用過程中有報錯The FastCGI process exceeded configured request timeout解決辦法如下:
FastCgi的配置文件“fcgiext.ini”,位於目錄“C:WINDOWSsystem32inetsrv”下。
在“fcgiext.ini”最末php的配置內容下增加一些參數,如下:
[Types]
php=PHP
[PHP]
ExePath=C:PHPphp-cgi.exe
InstanceMaxRequests=10000
EnvironmentVars=PHP_FCGI_MAX_REQUESTS:10000
RequestTimeout=500
ActivityTimeout=900
如果遇到的是“FastCGI process exceeded configured activity timeout ”的錯誤,也是這樣解決。