Menu
Increase Max File Upload Size
Last Post 1/21/2013 10:45 AM by Deleted User. 0 Replies.
Sort:
PrevPrev NextNext
Author Messages
Deleted User
New Member
New Member
Posts:62


--
1/21/2013 10:45 AM  Quote  Reply  
This depends on your version of IIS

You may view Chris Hammonds video here, http://www.dotnetnuke.com...in-DotNetNuke-6.aspx which shows you how to do this. This post will just give you the quick basics.

http://bit.ly/dnnlarge


For IIS 5, or 6
Edit the web.config file for your application.
Change maxRequestLength="8192" to maxRequestLength="81920" (for 80MB)
Change requestLengthDiskThreshhold="8192" to requestLengthDiskThreshhold="81920" (for 80MB)
Save the web.config. You are finished here


For IIS 7

Change maxRequestLength="8192" to maxRequestLength="81920" (for 80MB)
Change requestLengthDiskThreshhold="8192" to requestLengthDiskThreshhold="81920" (for 80MB)

AND you need to add some new code in the web.config file
Search for the system.webServer section

Paste this code before the closeing </system.web> tag
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="83886080" />
</requestFiltering>
</security>
which is measured in bytes
Save the web.config. You are finished.
Add Reply

Quick Reply
toggle
  Username:
Subject:
Body:
Security Code:
CAPTCHA image
Enter the code shown above in the box below.