Add executionTimeout parameter

  1. Open the Web.config file for editing. By default, this file is in Program Files\Common Files\Microsoft Shared\Web server extensions\12\TEMPLATE\LAYOUTS.

  2. Add the executionTimeout parameter:

    Existing Code

     <location path="upload.aspx"> 
        <system.web> 
          <httpRuntime maxRequestLength="2097151" /> 
        </system.web> 
      </location> 

    Replacement Code

    <location path="upload.aspx"> 
        <system.web> 
          <httpRuntime executionTimeout="999999" maxRequestLength="2097151" />     </system.web> 
      </location> 
  3. After you change the file, save and close the file.

  4. Open the Web application Web.config file for editing. By default, this file is at Inetpub\wwwroot\wss\VirtualDirectories\VirtualDirectoryFolder.

  5. Change the following line in the file:

    Existing Code

    <httpRuntime executionTimeout="3600" maxRequestLength="51200" />

    Replacement Code

    <httpRuntime executionTimeout="3600" maxRequestLength="2097151" />
  6. After you change the file, save and close the file.

// Ethnio survey code removed