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>



[...] Upload bug in MOSS 2007 / Windows Server 2008 (Boris GomiunIK)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: [...]
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.
To be fair, maxAllowedContentLength was introduced to separate control over maximum length of content in a request from the maximum file upload size. It’s not an ‘error’ or a ‘problem’ with IIS. It’s that Sharepoint doesn’t work with IIS 7 as well as it should.
Has anyone see/heard of this problem on MOSS 2007 with Windows Sever 2003 Enterprise 64bit SP2? Appreciate any feedback.
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
Any solutions on server 2003 for especially this issue ?
Nice artikel.. It worked like a charm !
[...] Consulting the Google oracle I found this: http://www.sharepointboris.net/2009/02/upload-bug-in-moss-2007-windows-server-2008/ [...]
Hi, This solution worked perfectly for me, thanks. But it only lasted for 2 weeks. it is back to its prefix state. I’ve checked everything(the modified web.config’s), and everything is still the way I modified it. We have done a server restart and the problem still persists. Anyone have an idea, please help
Thanks for this… it’s still relevent… Make sure if you have multiple front end servers to make the changes on BOTH servers.
WOW Amazing.
Thanks for that valuable info.