The solution to the PHP running timeout problem under IIS6+fastcgi; there is an error The FastCGI process exceeded configured request timeout reported during use. The solution is as follows:
FastCgi’s configuration file “fcgiext.ini” is located in the directory “C:WINDOWSsystem32inetsrv”.
Add some parameters under the final php configuration content of "fcgiext.ini", as follows:
[Types]
php=PHP
[PHP]
ExePath=C:PHPphp-cgi.exe
InstanceMaxRequests=10000
EnvironmentVars=PHP_FCGI_MAX_REQUESTS:10000
RequestTimeout=500
ActivityTimeout=900
If you encounter the error "FastCGI process exceeded configured activity timeout", this is the solution.
http://www.bkjia.com/PHPjc/371656.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/371656.htmlTechArticleSolution to the PHP running timeout problem under IIS6+fastcgi; there is an error during use The FastCGI process exceeded configured request timeout solution The method is as follows: FastCgi configuration file fcgiext....