I get this error when accessing a Trac project:

Warning:  Can't synchronize with the repository (Unsupported version
control system "svn": "libsvn_swig_py-1.so.0: cannot open shared
object file: No such file or directory" ). Look in the Trac log for
more information.

Nothing is written to the log. Here's the apache conf:

<VirtualHost *:80>
    ServerName    trac.domain.lan
    DocumentRoot  /var/trac
    CustomLog     /usr/local/apache2/logs/trac.access.log combined
    ErrorLog      /usr/local/apache2/logs/trac.error.log

    <Location />
        SetHandler mod_python
        PythonOption PYTHON_EGG_CACHE /var/cache/egg-cache
        Order Allow,Deny
        Allow from all
        PythonInterpreter main_interpreter
        PythonHandler trac.web.modpython_frontend
        PythonOption TracEnvParentDir /var/trac/
        #PythonOption TracUriRoot /trac
    </Location>

    <LocationMatch "/[^/]+/login">
        AuthType Digest
        AuthName "trac"
        AuthDigestDomain /trac
        AuthDigestProvider file
        AuthUserFile /var/domain/passwd/trac/auth
    </LocationMatch>
</VirtualHost>

Any ideas? Just out of curiosity what apache modules are required by
trac when using svn? mod_dav? Anything else? I think that's what the
problem is but I'm not too sure. I've been beating my head up against
this for awhile. Thanks in advance.

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en.

Reply via email to