Saturday, October 29, 2011

Allow uploading large files on IIS 7.0

Solve the Uploadify IO Error.

In IIS 7.0, the default upload limit is 30M.

%windir%/system32/inetsrv/config/applicationhost.config

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

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.