Hey everybody,
A few weeks ago, we upgraded from 7.0.4 to 7.0.5. After that, we started seeing a lot of Request Timed Out errors in the log that weren't there before. We are running Windows Server 2008 and IIS7. My client claims that no changes have been made to their web server other than our AC upgrade. I've searched the AC forums and haven't seen anybody else complaining of this problem. A general search of the net turns up others with asp.net applications which are experiencing similar issues related to AJAX post requests and IIS7. The timeouts for our site often occur on pages with the AJAX update panel. Any thoughts or suggestions?
Thanks!
Sleeve
Request Timed Out
Re: Request Timed Out
Give a try by increasing executionTimeout in you web.config file
Locate this code in you web.config file
and replace with this
Locate this code in you web.config file
Code: Select all
<httpRuntime maxRequestLength="4096"/>
Code: Select all
<httpRuntime maxRequestLength="4096" executionTimeout="300"/>
hope this helps!
__________________
s_ismail

AbleCommerce Customization
Free Plugins and Add-Ons
AbleCommerce Plugins and Add-Ons
Plugables Blog
__________________
s_ismail


AbleCommerce Customization
Free Plugins and Add-Ons
AbleCommerce Plugins and Add-Ons
Plugables Blog
Re: Request Timed Out
Thanks s_ismail. It's been 6 hours and so far, our log is clean. Any idea why the execution time out would need to be increased for 7.0.5?