Maximum request length exceeded.

前端 未结 14 2731
臣服心动
臣服心动 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:54

    To summarize all the answers in a single place:

    
      
    
    
    
      
        
          
        
      
    
    

    Rules:

    • maxRequestLength (expressed in kb) value must match maxAllowedContentLength (expressed in bytes).
    • most of the time your system.web section may already contains an "httpRuntime". set your targetFramework to the version of your .net used.

    Notes:

    • default value for maxRequestLength is 4096 (4mb). max value is 2,147,483,647
    • default value for maxAllowedContentLength is 30,000,000 (around 30mb). max value is 4,294,967,295

    more info MSDN

提交回复
热议问题