Census uploaded fails with ‘Request Size Exceeded’

Issue #610 resolved
Brian Lewis repo owner created an issue

No description provided.

Comments (2)

  1. Brian Lewis reporter

    This is a setting in web.config:

    https://stackoverflow.com/questions/11438317/how-is-the-property-in-webconfig-maxrequestlength-measured

    We should not globally set a very large value for this, but tailor it to circumstance based on the largest file a particular site requires.

    by default, try ~6Mb:

      <system.web>
        <compilation debug="true" targetFramework="4.6" />
        <!-- imageprocessor sets the fcnMode (file change notification) -->
        <httpRuntime targetFramework="4.6" fcnMode="Single" maxRequestLength="6000"/>
    
  2. Log in to comment