Reputation: 2787
I am using Umbraco 7.2.1 and in the Media section uploading some images. I think Umbraco has limit for image size of 4Mb. When I try to upload images of greater size, they just simply come and disappear.
Umbraco should have a message or something to notify that size limit is crossed but thats a totally different issue.
My question is how this limit can be increased?
Upvotes: 1
Views: 1789
Reputation: 911
You have to edit your web.config, maxRequestLength and maxAllowedContentLength (the example is for 100mb uploads):
<httpRuntime requestValidationMode="2.0" enableVersionHeader="false" targetFramework="4.5" maxRequestLength="104857600" />
and also
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="104857600" />
Upvotes: 5