php – iis – Nastavení maxAllowedContentLength

Od posmura

Verify the configuration/system.webServer/security/requestFiltering/requestLimits@maxAllowedContentLength setting in the applicationhost.config or web.config file.

<?xml version=“1.0″ encoding=“UTF-8″?>
<configuration>
    <system.webServer>
        <defaultDocument>
            <files>
                <add value=“data.aspx“ />
            </files>
        </defaultDocument>
        <directoryBrowse enabled=“true“ />
      <security>
        <requestFiltering>
          <requestLimits maxAllowedContentLength=“4294967295″ />
        </requestFiltering>
      </security>
    </system.webServer>
    <system.web>
        <identity impersonate=“true“ />
    </system.web>
</configuration>