超过最大请求长度。我收到错误了最大请求长度超过当我试图上传一个视频在我的网站。我该怎么解决这个问题?
3 回答
有只小跳蛙
TA贡献1824条经验 获得超8个赞
<configuration> <system.web> <httpRuntime maxRequestLength="1048576" /> </system.web></configuration>
<system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="1073741824" /> </requestFiltering> </security> </system.webServer>
注:
maxRequestLength
测量值 千字节
maxAllowedContentLength
测量值 字节
慕斯王
TA贡献1864条经验 获得超2个赞
system.web
<httpRuntime maxRequestLength="1048576" executionTimeout="3600" />
system.webServer
<security> <requestFiltering> <requestLimits maxAllowedContentLength="1073741824" /> </requestFiltering></security>
重要
人到中年有点甜
TA贡献1895条经验 获得超7个赞
<location path="Documents/Upload"> <system.web> <!-- 50MB in kilobytes, default is 4096 or 4MB--> <httpRuntime maxRequestLength="51200" /> </system.web> <system.webServer> <security> <requestFiltering> <!-- 50MB in bytes, default is 30000000 or approx. 28.6102 Mb--> <requestLimits maxAllowedContentLength="52428800" /> </requestFiltering> </security> </system.webServer></location>
- 3 回答
- 0 关注
- 1164 浏览
添加回答
举报
0/150
提交
取消