Home Gitesh Portfolio Blog About Me Gallery Contact

Increase connection timeout setting in web-config file in kentico

Go to the web.config file at the root level:

To increase the IIS Connection timeout value, change the following value

add name="CMSConnectionString" connectionString="Persist Security Info=False;database=xxx;server=xxx;user id=xx;password=xxx;Current Language=English;Connection Timeout=<Increase this value>;" />


OR

Change the below:

<system.web>
    <httpRuntimemaxRequestLength="51200" requestValidationMode="2.0"/>

to

<system.web>
    <httpRuntime executionTimeout="180" maxRequestLength="51200" requestValidationMode="2.0"/>

This will increase it to 3 minutes.

Posted: 22/04/2013 9:00:41 p.m. by Gitesh Shah | with 0 comments