SVN errorcode=2 无法打开请求的 SVN 文件系统

SVN errorcode=2 无法打开请求的 SVN 文件系统

我已经运行 MAMP(适用于 OSX 的 XAMP),并且正在尝试设置 subversion。

当我在浏览器中转到新创建的存储库时,我得到:

<D:error>
<C:error/>
<m:human-readable errcode="2">
Could not open the requested SVN filesystem
</m:human-readable>
</D:error>

存储库设置在我的服务器目录中。我的 php 文件也在那里,并且运行良好。我的基本 httpd.conf 设置:

<Location /svn>
DAV svn
SVNPath ~/server/svntest
(Authenticaton will be added later)
</Location>

我已经把所有内容 chmod 为 777

drwxrwxrwx   9 gerrit  staff       306 27 okt  2008 svn

Apache 的错误日志没有显示任何错误。

我该如何解决这个问题?

答案1

您在 ~/server/svntest 有存储库或工作副本吗?它必须是一个存储库,并且查看您的 ls -l,它看起来像一个工作副本。

SVNPath 最好使用绝对路径,而不是 ~

相关内容