我有一个用nopCommerce(着名的电子商务软件)构建的数字产品商店 但是上传大小超过5MB的数字产品会导致#34;上传失败" erro,解决方案是什么?
答案 0 :(得分:0)
首先,检查NopCommerce设置 catalogsettings.fileuploadmaximumsizebytes 。
其次,你也可以尝试编辑web.config作为folows
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800" /> <!--50MB-->
</requestFiltering>
</security>
</system.webServer>
答案 1 :(得分:0)
默认情况下,ASP.Net中的最大默认文件大小为4MB。在web.config中查找此设置。
<httpRuntime
maxRequestLength = "number"
/>
将字数更改为所需大小(以字节为单位)。
答案 2 :(得分:0)
我必须在web.config中更新2个项目。将值更新为您想要的最大值。
1.在system.webServer标签中添加:
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483647" />
</requestFiltering>
</security>
2.更新httpRuntime标签:
<httpRuntime targetFramework="4.5.1" enableVersionHeader="false" maxRequestLength="2147483647"/>