Guider fix error Maximum request length exceeded
When you using IIS, default upload file size is 4MB. To increase it, you need reconfig your web.config
This config example is equivalent file upload to 1GB.
<configuration>
<system.web>
<httpRuntime maxRequestLength="1048576" />
</system.web>
</configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
</system.webServer>
Good luck.
No comments:
Post a Comment