We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: