21

when i try to update my local subversion copy with the command "svn up" it gives me the error:

svn: Server sent unexpected return value (413 Request Entity Too Large) in response to REPORT request for '/repository/!svn/vcc/default'

what could be the problem here?

thanks!

0

5 Answers 5

42

I believe this error occurs when there are a large number of changes being updated and the request returns a response that is actually too large. When this occurs try updating subfolders individually first. Once you've updated a few subfolders the data being returned for the main folder request should be small enough to go through.

3
  • Anyone have a solution when the large number of updates are all in a single folder?
    – RacerNerd
    Apr 22, 2014 at 22:25
  • 1
    This worked for me to. For some reason all of a sudden I got this error. Then I made some updates in some large separate subfolders (in fact NOTHING got updated inside those folders, simply no changes there). After that I was able to update the entire copy. May 8, 2014 at 8:32
  • @RacerNerd SVN up individual files if they are all in one folder Nov 19, 2014 at 18:33
6

I think it is a problem with the SSL-certification. A solution is discussed at http://svn.haxx.se/users/archive-2008-01/0689.shtml: which said:

413 Request Entity Too Large" problem can be solved by moving SSLVerifyClient from the directory level up to the virtual host level as found in Apache bug 39154, http://www.mail-archive.com/bugs@httpd.apache.org/msg21739.html.

4
  • thanks, but i am only on the client side and cannot make changes to the server configuration.
    – clamp
    May 7, 2009 at 12:17
  • ok, but it is a configuration error, not a user error. You should inform your administrator May 8, 2009 at 11:42
  • I also faced similar error interestingly that was with update only, checkouts were working fine. Apr 19, 2011 at 6:15
  • Just update & commit a few files/directories at a time. Nov 3, 2020 at 3:47
6

In my case it have been simply a problem with configuration, the LimitXMLRequestBody setting.

1
  • 1
    Yes, adding "LimitXMLRequestBody 0" to my httpd.conf file in Apache fixed the problem!
    – sfarbota
    Aug 6, 2014 at 15:47
1

If your configuration was working before and eventually stopped working, you may have corrupted your working folder on client side. In this case, the following command on your working folder may help:
svn cleanup

-1

Delete your working folder and do clean checkout.

2
  • Not terribly useful. I'm sure he's tried that already, or he doesn't want to.
    – Mel Padden
    Apr 8, 2013 at 7:39
  • 6
    i would like to see you do that when you have lots of uncommited changes Apr 22, 2013 at 14:33

Not the answer you're looking for? Browse other questions tagged or ask your own question.