我正在尝试将大文件添加到Media of Orchard CMS中,但它会返回此错误:
超出最大请求长度
我已经更改了web.config值,如下所示:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="500000000"/>
</requestFiltering>
</security>
</system.webServer>
<runtime maxRequestLength="5000000" executionTimeout="3600">
该网站托管在IIS 7.5中。
有人知道如何解决这个问题吗?
提前致谢。