[EMAIL PROTECTED] wrote: > I have read this too > http://threebit.net/mail-archive/trac/msg00127.html > > But that still does not solve my problem: > I put this in my python.conf > ... > PythonPath "sys.path+['/usr/local/lib/svn-python']+['/usr/local/lib/ > pysqlite2']" > PassEnv LD_LIBRARY_PATH > >
Your PythonPath line should rather be: "sys.path+['/usr/local/lib/svn-python', '/usr/local/lib']" unless the /usr/local/lib/pysqlite2 folder itself contained a pysqlite2 sub-folder, which sounds unlikely. > > <Location /trac> > SetHandler mod_python > SetEnv PYTHON_EGG_CACHE /tmp/eggcache > PassEnv LD_LIBRARY_PATH > </Location> > > ... and make sure your LD_LIBRARY_PATH is correctly set at the time httpd is started. Should be something like: export LD_LIBRARY_PATH=/usr/local/sqlite-3.3.x/lib:$LD_LIBRARY_PATH -- Christian --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
