FastCGI process exceeded configured activity timeout

前端 未结 4 789
执笔经年
执笔经年 2020-12-13 17:57

I have a function I built that will grab a .csv file and upload information stated then, creating an account for each user in the .csv file.

My issue is I need to

4条回答
  •  暖寄归人
    2020-12-13 18:25

    For Windows Server 2008 R2, the default version of IIS that is supplied is IIS 7.5. The solution Dave suggested will not work because that file isn't there.

    Instead, try %windir%\system32\inetsrv\config\applicationHost.config to set up the options for the entire server. Look at the block:

    
        
            
                
            
        
    
    

    Remember to restart your webserver.

    I set the activityTimeout to 90 and requestTimeout to 270 to give processes more time to finish their work. This wasn't enough for my problem, but it should at least allow people to find the relevant bits on IIS 7.5.

提交回复
热议问题