我有个方法更新数据的 每次运行时间超过1分40秒就报下面的错
FastCGI ErrorThe 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)

解决方案 »

  1.   

     µÈ´ýµÄ²Ù×÷¹ýʱ¡£ 等待的操作过时。
    参考解决:The FastCGI process exceeded configured
    2010-07-30 07:08:36   来源:源码之家 站长整理    【大 中 小】   浏览:2263 次
        IIS6+fastcgi下PHP运行超时问题解决办法;使用过程中有报错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 ”的错误,也是这样解决。