Warm tip: This article is reproduced from stackoverflow.com, please click
apache svn svn-checkout dav

SVN Error E175002

发布于 2020-03-29 20:59:31

While trying to checkout code from a repository online I got the following Error

E175002: REPORT of '/repos/xxx/!svn/vcc/default'

I am trying to checkout the code from a remote computer

Questioner
Muhannad A.Alhariri
Viewed
45
Muhannad A.Alhariri 2015-03-12 15:17

After long research, I finally found a solution the solution was to put allow from all in the svn configuration on httpd.conf:

<Directory /repos>
...
allow from all
...
</Directory>

The svn checkout is working fine now

The above are for apache 2.2

if you use apache 2.4

<Directory /repos>
    ...
    require all granted
    ...
    </Directory>