I have been able to get SVN working on bluehost. Next I tried to set websvn and I am able to see the main websvn page but when I click on a repository then I get this error:
Error running this command: /home/username/system/bin/svn --non-interactive --config-dir /tmp log --xml --verbose --limit 2 'file:////home/username/devel//test/'
/home/username/system/bin/svn: line 60: /usr/bin/sed: No such file or directory /home/username/system/bin/svn: line 64: /usr/bin/sed: No such file or directory ls: write error: Broken pipe /home/username/system/bin/svn: line 88: /usr/bin/sed: No such file or directory
but /usr/bin/sed works fine from ssh. Any hints ? thanks
The machine you log into with ssh might not be the one that is actually servicing HTTP request on the websvn URL you tried, and thus might actually not have /u/b/sed installed. You could try installing sed in your account and replace all references to /u/b/sed with the path to your own version. Does svn+ssh work fine for you?
Cheers, Volker