Sharepoint Forum

 
Home » Forum » Sharepoint       Ask a questionRSS Feeds

Error in uploading files on SPsite

  Asked By: Heriberto Robles         Date: Jun 17, 2010      Category: Sharepoint      Views: 666

I am finding error in uploading files above 30Mb though i have made maximum upload size to 150Mb and also increased connection timeout to 600sec for the site. It shows error http 404 not found during uploading...Please help me out...

Tagged:            

 

1 Answer Found

 
Answer #1       Answered By: Dewayne Clay          Answered On: Jun 17, 2010       

After a extensive and nerve-wracking search for the error  that lastet at least 4 weeks, I found out that my problem is a bug of WSS3.0 when working in combination with IIS7.0 (Internet information services). Regardless wether you edited the max filesize in your sharepoint central administration you simpy couldn't upload files  bigger than 28MB.

By chance I found an article on Microsoft's support site  that pretty described my problem. To correct this error you simply have to enter the following xml section (under the <configurations> node) in the web.config
of your sharepoint site (found in \inetpub\wwwroot\wss\VirtualDirectories\):


<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800"/>
</requestFiltering>
</security>
</system.webServer>

In this example the filesize was set to 50MB.
After I editet my web.config everything worked fine.

The corresponding link to the MS support article is:

http://support.microsoft.com/kb/925083/EN-US/

I hope that anyone else who has the same problem that I had will fix it faster than me.

 
Didn't find what you were looking for? Find more on Error in uploading files on SPsite Or get search suggestion and latest updates.


Your Answer
  • Answer should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].