Home  >  Article  >  Backend Development  >  Solution: The FastCGI process exceeded configured_PHP tutorial

Solution: The FastCGI process exceeded configured_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 14:52:081079browse

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.

www.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....
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn