Maximum request length exceeded.

前端 未结 14 2727
臣服心动
臣服心动 2020-11-21 07:37

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?

14条回答
  •  再見小時候
    2020-11-21 07:48

    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.

提交回复
热议问题