Hej. Konfiguruje sobie SVN'a, a mam na VPS'ie zainstalowane Kloxo. Robię sobie na koncie stronka svncreate w /home/stronka/stronka.pl/. Repozytoria mam innym koncie firma w /home/firma/firma.pl/svn/repos/. I mam tutaj jedno /home/firma/firma.pl/svn/repos/projekt. W configu apacha dla konta stronka wbiłem
Kod
        <Location "/svn>
                DAV svn
                SVNParentPath /svn
                AuthType Basic
                AuthName "Authorization Realm"
                AuthUserFile /etc/svn-users
                Require valid-user
        </Location>
Mój /etc/httpd/conf.d
Kod
<Location /repos>
    DAV svn
    SVNPath /home/firma/firma.pl/svn/repos
    AuthType Basic
    AuthName "Subversion repos"
    AuthUserFile /etc/svn-users
    Require valid-user
</Location>
No i na koniec svn import -m 'Import' /home/stronka/stronka.pl/ http://firma.pl/svn/repos/projekt z hasłem dla roota i później user z hasłem to ten utworzony w /etc/svn-users. W /home/stronka/stronka.pl/ mam utworzone katalogi tags, branches, trunk.

Czy zrobiłem wszystko dobrze, aby to działało? Dostaję cały czas błąd:
Kod
Could not open the requested SVN filesystem
Ktoś mógłby coś pomóc?