Bug reports Found a bug? Post it here please.
Version 5.x > Bug reports > Upload file timing out (even with maxRequestLength and executionTimeout set to big values) View modes: 
User avatar
Member
Member
ricardo.fiel - 12/10/2010 7:01:01 AM
   
Upload file timing out (even with maxRequestLength and executionTimeout set to big values)
Hi all,

Using the Direct Uploader, and having set the maxRequestLenght and executionTimeout attributes of httpRuntime to very large values, we still have some issues when uploading large files.

Is there any setting that Kentico is overriding? Problems start when the file takes longer than 30 minutes, usually.

Thank you

User avatar
Kentico Developer
Kentico Developer
kentico_ivanat - 12/10/2010 9:35:04 AM
   
RE:Upload file timing out (even with maxRequestLength and executionTimeout set to big values)
Hi,

Which version of IIS are you using? In case it is IIS 7, you would need to add following code into your web.config (<system.webServer> section) file

<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483648"/>
</requestFiltering>
</security>

The value of maxAllowedContentLength is in bits.

For more information please take a look into documentation.

Best regards,
Ivana Tomanickova

User avatar
Member
Member
ricardo.fiel - 12/10/2010 9:52:46 AM
   
RE:Upload file timing out (even with maxRequestLength and executionTimeout set to big values)
Hi Ivana,

It's IIS 7.
Thanks, should be solved now.