Fixing FastCGI timeout error in IIS (PHP)
May 06
Received this error on a slow running PHP script on my server:
The FastCGI process exceeded configured activity timeout IIS
How I resolved it:
- Goto %windir%\system32\inetsrv\fcgiext.ini
- Locate the ActivityTimeout parameter and copy it into the [php] section of the ini file
- Make sure the ActivityTimeout parameter is uncommented out
- Change the number to whatever you want (units are seconds)
(by default ActivityTimeout is set to 30 secs)
Check out these posts too:
- JavaScript error reporting service with DamnIt
- How To Configure the CGI Script Timeout Value in IIS 5.0 and 6.0
- Can code this simple cause an IE script error?
- Disable error reporting in Windows
- Check if a photo is faked with Error Level Analyser
- FastCGI Extension for IIS 6.0
- Fixing Windows with Knoppix
Facebook
RSS
Twitter
Dec 06, 2010 @ 15:13:28
This helped a ton! Thank you!