Navigation

    Inedo Community Forums

    Forums

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. germyrinn_5020
    G
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    germyrinn_5020

    @germyrinn_5020

    0
    Reputation
    1
    Posts
    1
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    germyrinn_5020 Follow

    Best posts made by germyrinn_5020

    This user hasn't posted anything yet.

    Latest posts made by germyrinn_5020

    • RE: System.Web.HttpException (0x80004005): Maximum request length exceeded.

      If you are using IIS for hosting your application, then the default upload file size is 4MB. To increase it, please use this below section in your asp.net web.config -

      <configuration>
      <system.web>
      <httpRuntime maxRequestLength="1048576" />
      </system.web>
      </configuration>
      For IIS7 and above, you also need to add the lines below:

      <system.webServer>
      <security>
      <requestFiltering>
      <requestLimits maxAllowedContentLength="1073741824" />
      </requestFiltering>
      </security>
      </system.webServer>
      Note:

      maxRequestLength is measured in kilobytes
      maxAllowedContentLength is measured in bytes

      posted in Support
      G
      germyrinn_5020