7 min : 35 sec
This video will explain the different settings you need to adjust to change the maximum file size upload allowed by DotNetNuke. This is part 1 of 2.
Related Link:
- Understanding maximum file size upload in DotNetNuke part 2/2 - Video #273
<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="20971520" />
</requestFiltering>
</security>
</system.webServer>
</configuration>
10 MB = 10240 KB (10 x 1024)
10 MB = 10485760 Bytes (10 x 1024 x 1024)
20 MB = 20480 KB (20 x 1024 KB)
20 MB = 20971520 Bytes (20 x 1024 x 1024)