Upload limits around 30MB

Discussion in 'General troubleshooting' started by bobo22, Jan 7, 2012.

  1. Hello all,
    I have been trying to upload via web app +30MB unsuccessfully for some time now.

    added in web.config :
    <httpRuntime executionTimeout="999999" maxRequestLength="2097151" />

    increased user quota ( Anonymous ASPNet User 300-500MB )... anything else one can do?

    I can only upload 25 or so MB. Using IIS 7.0 , ASP.NET Version 4.0 ( tried with 2.0) Integrated and Classic.
    If anyone has any idea? apart from the web.config modification?


    Thanks
     
  2. This code should double your upload limit to 60MB
    Code:
    <configuration>
    <system.webServer>
    <security>
    <requestFiltering>
    <requestLimits maxAllowedContentLength="62914560"/>
    </requestFiltering>
    </security>
    </system.webServer>
    </configuration> 
    
     
  3. Thank you for posting an answer,
    this worked.


     
  4. mjp

    mjp

    Beautiful, glad it worked for you.
     

Share This Page