每在頁面中上傳較大的文件時遇到FastCgi的錯誤:“The FastCGI process exceeded configured request timeout”,幾經試驗,明白了需要修改FastCgi的配置文件“fcgiext.ini”,位於目錄“C:/WINDOWS/system32/inetsrv”下。
在“fcgiext.ini”最末php的配置內容下增加一些參數,如下:
引用
[Types]
php=PHP
[PHP]
ExePath=C:/PHP/php-cgi.exe
InstanceMaxRequests=10000
EnvironmentVars=PHP_FCGI_MAX_REQUESTS:10000
RequestTimeout=500
ActivityTimeout=900
如果遇到的是“FastCGI process exceeded configured activity timeout ”的錯誤,也是這樣解決。