myLittleTools Community Forum

Welcome Guest Search | Active Topics | Members | Log In | Register

Upload time out Options · View
elian
Posted: Saturday, July 04, 2009 7:01:32 AM

Rank: Administration
Groups: Administration

Joined: 9/11/2006
Posts: 605
Points: 649
Location: Enghien Les Bains, France
We frequently have support tickets about upload time out.
Here are the 3 things to check:

1. The file size limit is supposed to be 2Gb.
Check in the web.config file that the executionTimeOut property and the maxRequestLength are correctly set:

Code:
     <httpRuntime
         maxRequestLength="2097151"
         executionTimeout="86400"
     />


(Note that maxRequestLengthis in KB and executionTimeout in seconds)

2. If you're using IIS 7:

By default in IIS 7 requestFiltering has the MaxAllowedContentLength property enabled. It specifies, in bytes, the maximum length of the content in a request. The default is 30,000,000 (approximately 30 megabytes.) To change this value you must edit the following file:
%windir%\System32\inetsrv\config\applicationHost.config
In the ApplicationHost.config file, locate the <requestLimits> node.
Modify the following code.

Code:
<requestLimits maxAllowedContentLength ="2147483648" />

(Note that maxAllowedContentLength is in bytes, 2147483648 is around 2GB)

3. URLScan:
At last, if you're using URLScan it has its own maxRequestLength-like property. You may need to update it too.
Users browsing this topic
Guest


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Main Forum RSS : RSS

Theme created by myLittleTools
Powered by Yet Another Forum.net version 1.9.1.8 (NET v2.0) - 3/29/2008
Copyright © 2003-2008 Yet Another Forum.net. All rights reserved.