Home
Manage Your Code
Snippet: Sharepoint File Upload limit fix (XML)
Title: Sharepoint File Upload limit fix Language: XML
Description: Increases the size of the request length so allow larger file uploads in Sharepoint. Views: 359
Author: Ben Ramey Date Added: 6/3/2010
Copy Code  
<system.webServer>
	<security>
		<requestFiltering>
			<requestLimits maxAllowedContentLength="2147483648" />
		</requestFiltering>
	</security>
</system.webServer>
Usage
This goes in your web.config file for whatever web application needs the expanded limit.