When I upload an image I had this error:
maximum request length exceeded
How can I fix this problem?
Add the following to your web.config file:
<configuration> <system.web> <httpRuntime maxRequestLength ="2097151"/> </system.web> </configuration>
This sets it to 2GB. Not certain what the max is.
1.4m articles
1.4m replys
5 comments
57.0k users