I am getting the error Maximum request length exceeded when I am trying to upload a video in my site.
How do I fix this?
I don't think it's been mentioned here, but to get this working, I had to supply both of these values in the web.config:
In system.web
And in system.webServer
IMPORTANT : Both of these values must match. In this case, my max upload is 1024 megabytes.
maxRequestLength has 1048576 KILOBYTES, and maxAllowedContentLength has 1073741824 BYTES.
I know it's obvious, but it's easy to overlook.