Edgewall Software

Changes between Version 45 and Version 46 of TracSubversion


Ignore:
Timestamp:
Apr 30, 2007, 9:11:06 PM (17 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracSubversion

    v45 v46  
    239239bindings (`.../lib/svn-python/svn/core.py`).
    240240
    241  3. If you're using Apache / mod_python (Linux)
     241 3. If you're using Apache / mod_python (Linux) (first tip)
    242242
    243243Get a similar list of libraries, but this time for one of your httpd process.
     
    247247errors (e.g. #4985).
    248248
     249 4. If you're using Apache / mod_python (Linux) (second tip)
     250
     251If you have installed the Subversion .so-Files in some "remote" location, Apache may be unable to find them (and thus unable to pass them on to Python/Trac, such that Trac cannot find Subversion). To check if this is the case, do the following:
     252
     253{{{
     254/etc/init.d/apache2 stop
     255$export LD_LIBRARY_PATH=/usr/lib/python/site-packages/libsvn/:$LD_LIBRARY_PATH
     256/etc/init.d/apache2 restart
     257}}}
     258
     259If this works, you need to add the library path permanently. There are two options for this. Either add it in the Apache configuration file (http://httpd.apache.org/docs/2.2/mod/mod_env.html#setenv) or at the system level by adding the path to /etc/ld.so.conf, and then run ldconfig. More information on shared libraries can be found here: http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html
     260
    249261== Known Issues ==
    250262