Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • vaibhav 119 posts 139 karma points
    Jul 23, 2011 @ 11:25
    vaibhav
    0

    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....

    <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 ....

  • andy_rose 91 posts 117 karma points
    Jul 26, 2011 @ 14:57
    andy_rose
    0

    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

     

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies