Thursday, October 2, 2014

Uploading Large Files in sharepoint 2013/2010/2007

  • Change the maximum upload size on the web application level


  • Central Admin>Application Management>Manage Web Applications> Select the desired web app and click General Settings on the ribbon







  • Modify the web.config file for the appropriate web application, this is located by default at C:\inetpub\wwwroot\wss\VirtualDirectories\web application name or port

      • 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