Hi Markus;

I installed Trac and Apache 2.2 on OS X Server 10.4.3 a few weeks ago using the trac darwinport.

==================
osx-server:~ blacey$ port info trac
trac 0.9.2, devel/trac

Trac is an enhanced wiki and issue tracking system for software development projects. Trac uses a minimalistic approach to web-based software project management.

Library Dependencies: subversion-pythonbindings, clearsilver, py-sqlite, python24, sqlite3
Platforms: darwin
Maintainers: [EMAIL PROTECTED]
==================

Installation steps:

1) sudo port install apache2
2) sudo port install subversion +mod_dav_svn
3) sudo port install mod_python
4) sudo port install trac

Here is the trac configuration from my httpd.conf

<VirtualHost *>
ServerName projects.<domain>.com
DocumentRoot "/Projects/Trac"

        #
        # Trac mod_python configuration
        #
        Alias /trachtdocs/ "/opt/local/share/trac/htdocs/"
        <Location /trac>
                SetHandler mod_python
                #PythonHandler trac.ModPythonHandler
                PythonHandler trac.web.modpython_frontend
                PythonOption TracUriRoot "/trac"
                PythonOption TracEnvParentDir "/Projects/Trac"
        </Location>

        <LocationMatch /trac/[[:alnum:]]+/login>
                AuthType Basic
                AuthName "Trac"
                AuthUserFile "/opt/local/etc/trac-auth-file"
                Require valid-user
        </LocationMatch>
</VirtualHost>

Regards,
Bruce

On Dec 27, 2005, at 1:41 PM, Bischof Markus wrote:

Hello,

finaly I got apache 2.2 and trac work on my apple powerbook with os x 10.4.3.
But when I open the Timeline in the browser i get the following error message:


Failure linking new module: /opt/local/lib/svn-python/libsvn/_fs.so: Library not loaded: /opt/local/lib/libaprutil-0.0.dylib
  Referenced from: /opt/local/lib/svn-python/libsvn/_fs.so
  Reason: image not found


Any ideas???

Versions:

trac: 0.9.2_0
apache: 2.2.0_0
python: 2.4.2_1+darwin_8

all the software was installed via darwinports

I would be soooo happy if anybody could help me

Markus
_______________________________________________
Trac mailing list

_______________________________________________
Trac mailing list
[email protected]
http://lists.edgewall.com/mailman/listinfo/trac

Reply via email to