SVN Error E175002 while checking out code from repository

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>

Leave a Comment