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.
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>
After you change the file, save and close the file.
Open the Web application Web.config file for editing. By
default, this file is at Inetpub\wwwroot\wss\VirtualDirectories\VirtualDirectoryFolder.
Change the following line in the file:
Existing Code
<httpRuntime executionTimeout="3600" maxRequestLength="51200" />
Replacement Code
<httpRuntime executionTimeout="3600" maxRequestLength="2097151" />
After you change the file, save and close the file.
|
|
|