I've successfully installed VisualSVN server on my computer and setup it's repository root on network, to save all files on another computer. My repositories root is \\file-server\svn\
I can access all my repositories using build-in web browser by going to https://localhost/svn/
, but I wanted to install WebSVN.
When my repositories are on local drive then I have no problem viewing them with WebSVN, but I have problem when I want to access network location.
In config.php I have this config:
$config->parentPath('c:\\Repositories');
//$config->parentPath('file:///\file-server\svn');
When I comment first line and uncomment second I get following error:
Error running this command: " "C:\Program Files\VisualSVN Server\bin\svn" --non-interactive --config-dir /tmp log --xml --quiet "file:///file:////file-server/svn/TestRepo/@"" --limit 1
svn: E180001: Unable to connect to a repository at URL 'file:///file:/file-server/svn/TestRepo'
svn: E180001: Unable to open an ra_local session to URL
svn: E180001: Unable to open repository 'file:///file:/file-server/svn/TestRepo'
I was trying to map my network location as drive, but that didn't help.
Is there an option to setup network location in WebSVN?