Does Anyone knows what is the max file size that can be uploaded through sharepoint?
I am facing an issue while uploading large file exceeding 1GB, i get an error:
Here are some solutions i tried:
web.config
file of the web application. executionTimeout
value.I tried these and i am still getting and error while uploading these large files, here is the error:
Sorry something went wrong, an unexpected error occured.
There are a few tricks but usually when handling such large files you are better off using a file share instead.
Increase the maximum upload size for the IIS web application, there is a maximum file size up to 2047 megabytes.
Open the web.config C:\Inetpub\wwwroot\wss\VirtualDirectories\<Virtual Directory>
and set
<httpRuntime maxRequestLength="51200" /> to <httpRuntime executionTimeout="999999" maxRequestLength="51200" />
There is a great post on this here, 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
But first of all I'd recommend you to have a look at RBS (Remote Blob Storage), http://technet.microsoft.com/en-us/library/ee748649.aspx