I am getting this error when I am trying to upload a video in my site.
Can you tell me how to fix this?
|
I am getting this error when I am trying to upload a video in my site. Can you tell me how to fix this? |
||||
|
|
|
If you are using IIS for hosting your application, then the default upload file size if 4MB. To increase it, please use this below section in your web.config -
Just to add - If you are using IIS7 then you need to use below lines instead of above -
Note: |
|||||||||||||||||||||
|
|
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. |
|||||||||||||||
|
|
There's an element in web.config to configure the max size of the uploaded file:
|
||||
|
|
|
The maximum request size is, by default, 4mb (4096 KB) This is explained here: http://support.microsoft.com/default.aspx?scid=kb;EN-US;295626 The above article also explains how to fix this issue :) |
||||
|
|
|
It may be worth noting that you may want to limit this change to the URL you expect to be used for the upload rather then your entire site.
|
||||
|
|