WebSVN install on IIS 6.0
Posted
by ClayB
on Stack Overflow
See other posts from Stack Overflow
or by ClayB
Published on 2009-12-10T21:34:43Z
Indexed on
2010/04/15
22:53 UTC
Read the original article
Hit count: 465
I am trying to set up WebSVN on a Windows Server 2003 machine and not having any luck. I have done the following:
- Installed FastCGI
- Installed PHP 5.3.1.0 to c:\PHP
Updated php.ini with the following:
cgi.force_redirect = 0 cgi.fix_pathinfo = 1 fastcgi.impersonate = 1 fastcgi.logging = 0
Downloaded and extracted WebSVN 2.3.0 to D:\myWebRoot\websvn
- Copy distconfig.php to config.php
Added the following:
$config->setSVNCommandPath('c:\Program Files\Subversion\bin'); $config->setDiffPath('C:\Program Files\FogBugz\accessories'); $config->addRepository('Documents', 'https://myServer>/myDir/Docs)', null, 'myDocsUser', 'myDocsPassword');
When I browse to URL myServer//websvn, I get the following error:
Error running this command: "c:\Program Files\Subversion\bin\svn" --version --config-dir /tmp
Any ideas?
© Stack Overflow or respective owner