Upload bug in MOSS 2007 / Windows Server 2008
With the new installation of MOSS 2007 on Windows Server 2008 you might run into a slight bump when trying to upload large files – to be more precise – files larger than 28 MB. Even though you’ve increased the maximum upload limit in SharePoint central administration, the upload still doesn’t work. Here are some symptoms that I received:
- Page cannot be found error in Internet Explorer when trying to upload to MOSS document library through “Upload” button
- Document not displaying in document library after uploading with “Upload multiple files” button even though the upload went to 100%
- Windows delayed write failed when trying to upload document through Explorer view. After the error the file appears in document library, but it has a file size 0.
The error is not in SharePoint, the error is in IIS7 which limits the upload to 28 MB. To remove this limitation I’ve followed instructions from the KB article:
Just in case: this did the trick: add the following lines at the end of your web’ application’s web.config file – just before the </configuration> closing tag:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483648"/>
</requestFiltering>
</security>
</system.webServer>
Technorati Tags: SharePoint,Windows Server 2008,IIS,IIS7,upload,SharePoint deployment,SharePoint administration



Thanks you! Worked like a charm. MOSS 2007 on Server 2008 hyperv vm.
thanks for your post,I had same problem and solve it with your help,please visite my web page http://sharepoint solutions.ir/blogs/hamid
Thanks. This solved my issue.
you are da man !!! was pulling out my hair for this one !!!!
worked like a charm … thanks …
Thanks Mike
That worked for me too. Been trying for ages to get a large file uploaded (86mb). You are a legend!!
Worked a charm on 2008 Server R2, MOSS 2007 farm. Thanks!
Thanks a lot! That did the trick for me too, although I had to add redirect-line too because of our environment.
Thanks! This helped me to solve the issue as well.
Thank you. Worked perfectly.
Question…is this addressed in SP2, by chance?
Not sure if it is…
Thanks alot…it worked after searching over the internet for answers for such a long time.