CFF KB - Carrz-Fox-Fire Promotions Knowledge Base
CFF KB is all about 1 thing: The Sharing of Knowledge and the Power we gain from it.Knowledge Base
- Breadrumbs:
HTTP Error 413.1 - Request Entity Too Large
- Article ID:
6250 - Date Created
Thursday, June 16, 2022 - Last Updated
Thursday, June 16, 2022 - This Article Has been Viewed
457 times - Short Desc
You may run into a file upload limitation when uploading files to an IIS Server with an ASP.NET application. This is by design and easy to resolve. - Details
When you design an ASP.NET application for uploading files to an IIS server, you have to add some settings to your web.config file to allow for a certain amount of data to be sent to the server. - Recreate Issue
The maxRequestLength and maxAllowedContentLength have not been appropriately set within the web.config file. - Resolve Issue
Open your application folder
Open web.config
Add the following settings.
We will set this to upload up to 5MB worth of data. If you think all the files together will reach this limit, then adjust accordingly.maxRequestLength
1000 KB = 1 mb
5000 KB = 5 mb
10000 KB = 10 mb
20000 KB = 20 MB
50000 KB = 50 MB
100000 KB = 100 MBmaxAllowedContentLength
1000000 Bytes = 1 mb
5000000 Bytes = 5 mb
10000000 Bytes = 10 mb
20000000 Bytes = 20 MB
50000000 Bytes = 50 MB
100000000 Bytes = 100 MB<configuration>
<system.web>
<compilation debug="true" strict="false" explicit="true" targetFramework="4.7.2" />
<httpRuntime targetFramework="4.7.2" maxRequestLength="5000"/>
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="5000000"/>
</requestFiltering>
</security>
</system.webServer>
</configuration>






Share With Friends (Updated 6-8-2010)
Recent Articles
All Topics
- Coming Soon - Knowledge Exchange
Trending Articles
- Microsoft VBScript runtime error '800a0046' Permission denied FileSystemObject 24943
- Microsoft OLE DB Provider for SQL Server error '80040e57' String or binary data would be truncated. or The field is too small to accept the amount of data you attempted to add. Try inserting or pasting less data. 21700
- ADODB.Parameters error '800a0e7c' Parameter object is improperly defined 19798
- After Effects warning: Audio conforming failed for the following file .cfa. Perhaps due to disk space 18261
- The backup set holds a backup of a database other than the existing 17075