jQuery-File-Upload.MVC5 icon indicating copy to clipboard operation
jQuery-File-Upload.MVC5 copied to clipboard

Large file fail to upload

Open MayraDesai opened this issue 6 years ago • 1 comments

I try to upload 16 Mb file but it's giving me Interval server error.

for the small file, it's work fine. but not for large file

so what change I have to do for uploading a large file.

MayraDesai avatar Apr 03 '18 09:04 MayraDesai

Hello @MayraDesai It looks like the you have reached maximum allowed content length, change settings in web.config and it should work.

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

From https://stackoverflow.com/questions/3853767/maximum-request-length-exceeded

PS: Use stackoverflow instead of github when you want to resolve non-code related issues.

llamaonsecurity avatar Apr 04 '18 09:04 llamaonsecurity