Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi,
I want to upload files which are more than 50mb in my media folder in umbraco.
So do this i add this to my web.config....
<httpRuntime requestValidationMode="2.0" maxRequestLength="1024000" executionTimeout="3600" />
After adding this ... i can only upload siles up to 30mb .... i dont know why....
I did searched in forum ... then i added this to my web.config....
<security> <requestFiltering> <requestLimits maxAllowedContentLength="1024000"/> </requestFiltering> </security>
After adding this ...i can only upload files up to 4mb only ....
Please help me to solve this ....
It looks like the maxAllowedContentLength property is specified in bytes rather than kbytes so you'll need to multiply it by 1024.
There is bit more info in the following IIS forum:
http://forums.iis.net/t/1066272.aspx
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Problem in uploading files...
Hi,
I want to upload files which are more than 50mb in my media folder in umbraco.
So do this i add this to my web.config....
After adding this ... i can only upload siles up to 30mb .... i dont know why....
I did searched in forum ... then i added this to my web.config....
After adding this ...i can only upload files up to 4mb only ....
Please help me to solve this ....
It looks like the maxAllowedContentLength property is specified in bytes rather than kbytes so you'll need to multiply it by 1024.
There is bit more info in the following IIS forum:
http://forums.iis.net/t/1066272.aspx
is working on a reply...