Maximum request length exceeded.

前端 未结 14 2722
臣服心动
臣服心动 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 08:02

    If you are using IIS for hosting your application, then the default upload file size is 4MB. To increase it, please use this below section in your web.config -

    
        
            
        
    
    

    For IIS7 and above, you also need to add the lines below:

     
       
          
             
          
       
     
    

    Note:

    • maxRequestLength is measured in kilobytes
    • maxAllowedContentLength is measured in bytes

    which is why the values differ in this config example. (Both are equivalent to 1 GB.)

提交回复
热议问题