当前位置: 代码迷 >> 综合 >> TortoiseSVN访问VisualSVN Server:Could not open the requested SVN filesystem。解决方法!!
  详细解决方案

TortoiseSVN访问VisualSVN Server:Could not open the requested SVN filesystem。解决方法!!

热度:38   发布时间:2024-01-09 10:16:04.0

问题描述:用浏览器访问可以,用TortoiseSVN就出错。

 

解决方法:

注释VisualSVN Server中httpd.conf中的#require valid-user

<Location /svn/>
  DAV svn

  SVNListParentPath on
  SVNParentPath "F:/repos/"
  SVNIndexXSLT "/svnindex.xsl"

  AuthName "Subversion Repositories"
  AuthType Basic
  AuthBasicProvider file
  AuthUserFile "F:/repos/htpasswd"
  AuthzSVNAccessFile "F:/repos/authz"

  #require valid-user
</Location>

  相关解决方案