Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Large file fail to upload #5

Open
MayraDesai opened this issue Apr 3, 2018 · 1 comment
Open

Large file fail to upload #5

MayraDesai opened this issue Apr 3, 2018 · 1 comment

Comments

@MayraDesai
Copy link

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.

@llamaonsecurity
Copy link
Owner

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants