I am infrequently seeing 413 / Request Entity Too Large when doing requests to our svn repository. This seems to be a problem when there's a lot of file changes and goes over some internal Apache limit (manually splitting up the requests into several smaller requests does fix things temporarily).
Some googling suggests I need to add some Apache directives to raise the limits, eg:
LimitXMLRequestBody 8000000
LimitRequestBody 0
However after adding an .htaccess file with this in, I'm not seeing any difference. My guess is either I've put it in the wrong place (currently next to the passwd and authz files) or there's something I need to do to get Apache to reload the configuration it uses.
Any suggestions appreciated, thanks.