On Wed, 2006-05-03 at 19:44 -0700, Michael Miller wrote:
> ViewVCException: ViewVC Unrecoverable Error: cvs not found!
> The wrong path for this repository was configured, or the server on
> which the CVS tree lives may be down. Please try again in a few
> minutes.
>
> My CVS tree lives in /var/cvs/repository.
> Here is a ls -la lisint of each directory.
>
> drwxrwxr-x 3 root ccc 4096 May 3 11:15 cvs
>
> drwxrwxr-x 3 root ccc 4096 May 3 11:18 repository
>
> drwxrwxr-x 3 mmiller mmiller 4096 May 3 11:18 CVSROOT
>
> This is all I have in my viewvc.conf
>
> cvs_roots = cvs: /var/cvs/repository
>
> default_root = cvs
Idk. That all looks like it should work. I suppose the /var directory is
executable? And you're not using ACLs or anything that would override
those permissions?
> This is my release info for Redhat ES 4 in case any one out there is
> running viewvc on the same version.
>
> Red Hat Enterprise Linux ES release 4 (Nahant Update 3)
>
> This is my Apache version and build date. I am using Redhat ES 4 RPMS
> for everything.
> Server version: Apache/2.0.52
> Server built: Dec 15 2005 04:09:14
>
> This is the version of Python I am running just in case.
>
> Python 2.3.4
>
> So this is the kicker I can run viewvc in standalone and it works just
> fine. I can run viewvc.cgi on Fedora Core 3 and Fedora Core 5 just
> fine. I allso can't get the directory to index even if I put this in
> the httpd.conf.
>
> Alias /repository/ "/var/cvs/repository"
> <Directory "/var/cvs/repository">
> Option Index
> Order allow,deny
> Allow from all
> </Directory>
That alias statement is going to cause problems because the alias
location ends with a slash and the directory location doesn't. Either of
the following would be better:
Alias /repository /var/cvs/repository
Alias /repository/ /var/cvs/repository/
Also I think you need to write "Option Indexes" instead of "Option
Index"
--
- Russell Yanofsky (PGP ID: 0x5FAA0216)
- http://russ.yanofsky.org/
--
signature.asc
Description: This is a digitally signed message part
|
|