Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • David Zweben 265 posts 749 karma points
    Sep 11, 2013 @ 23:44
    David Zweben
    0

    'Maximum request length exceeded' error when trying to install with fix

    This isn't a bug report in itself, but I encountered a problem installing this package, and fixed the issue, so I thought I'd share what I did:

    When I tried to install the package, I got a server error saying "Maximum request length exceeded". I found this post in the similar topics bar, and found the solution there. All you have to do is open the web.config file in the site's root directory, search for "httpRuntime" and add the following to the httpRuntime tag:

    maxRequestLength="1048576" executionTimeout="3600"

    Mine now looks like this:

    <httpRuntime maxRequestLength="1048576" executionTimeout="3600" requestValidationMode="2.0" enableVersionHeader="false" />

    After saving, and uploading the package again, I no longer got the error. Hope this helps if anyone else ran into the same issue.

Please Sign in or register to post replies

Write your reply to:

Draft