Error uploading file with size large than 30Mgb

Hi,

I need upload files with size superior at 30 mgb.

I set this web.config

<?xml version="1.0"?>
<configuration>
  <system.web>
    <authorization>
        <allow roles="Admin_ControlOperaciones"/>
        <deny users="*"/>
      </authorization>   
  <httpRuntime targetFramework="4.5" executionTimeout="2088" maxRequestLength="101200"  />
  </system.web>

  <system.webServer>
    <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="104857600" />
      </requestFiltering>
    </security>
  </system.webServer>
</configuration>

When I test the project in local machine, it works fine, but in the server it doesn't work. In server I can upload only files with less than 30mgb, but not superior at 30Mgb.

Any idea?


2 Replies

MA Manolo June 21, 2016 01:52 PM UTC

Sorry.

Now, a workmate say me that he install UrlScan in IIS, so it ignore my web.config configuration.

Thanks



KC Kasithangam C Syncfusion Team June 22, 2016 05:00 AM UTC

Hi Manolo, 
 
Thanks for your update. We are happy your issue is resolved. Please let us know if you have further query. 
Regards, 
Kasithangam 


Loader.
Up arrow icon