The issue of upload big file on SharePoint with iis7

Source: Internet
Author: User
Today, I tried to upload a file around 40 m to a library. but it failed with 404 error number. I tried to do the same on my other Sharepoint Server, successed. the defferences between these two server is the OS and IIS version. after I tested, the SharePoint Based on IIS 7 does not allow me upload one file greater than 29 m (include 29 m ). this problem is caused by IIS 7 default settings. to resolve this problem, please do following steps: 1. open C: \ windows \ system32 \ inetsrv \ config \ applicationhost. config File. 2. Locate to the node Configuration-system. webserver-security-requestfiltering-requestlimits . The requestlimits may not existing in this file. Please add this node manually if it is not existing. 3. Set the maxallowedcontentlength proterty and assign the value to this property. The sample XML is: <Configuration>
<System. webserver>
<Security>
<Requestfiltering>
<Requestlimits maxallowedcontentlength = "100000000" type = "codeph" text = "/codeph"/>
</Requestfiltering>
</Security>
</System. webserver>
</Configuration>

Please keep in mind that this issue is not a Sharepoint issue. It is a issue about iis7. it will occurred on not only SharePoint environment.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.