I am trying to upload files that are 6mb in size. The web config is set as follows:
  <system.webServer>
    <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="2147483648" />
      </requestFiltering>
    </security>
  </system.webServer>
I keep getting this error : Maximum request length exceeded.
Is there something that I am missing?
 
     
    