Central Admin>Application Management>Manage Web Applications> Select the desired web app and click General Settings on the ribbon
- Make a backup copy of the web.config, then open it
- Do a Ctrl+f to find this element
<httpRuntime maxRequestLength="51200" requestValidationMode="2.0" />
Modify the above element to match the following
<httpRuntime executionTimeout="999999" maxRequestLength="2048000" requestValidationMode="2.0" />
In the above step we added executionTimeout="999999" and we set the maxRequestLength to what we set the maximum upload size on the web application general settings, which is 2048000 (2000mb * 1024 = 2048000)
Ref Links :
http://blogs.technet.com/b/sammykailini/archive/2013/11/06/how-to-increase-the-maximum-upload-size-in-sharepoint-2013.aspx
http://blogs.technet.com/b/praveenh/archive/2012/11/16/issues-with-uploading-large-documents-on-document-library-wss-3-0-amp-moss-2007.aspx
No comments:
Post a Comment