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.
  • Breadrumbs:
  • HTTP Error 413.1 - Request Entity Too Large

  • CFF Knowledge Base - Share With Facebook CFF Knowledge Base - Share on Twitter CFF Knowledge Base - Share on Reddit CFF Knowledge Base - Share on Digg It CFF Knowledge Base - Share on Stumble Upon It CFF Knowledge Base - Share on Delicious
    Share With Friends (Updated 6-8-2010)
  • 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 MB


    maxAllowedContentLength
    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>