SystemError: NULL result without error in PyObject_Call
#14: Setting up trac under mod_wsgi returns NULL result error
When accessing the trac URI, a text/plain document is returned with Python errors, ending with
Think you've got a solution? Help yliu out by posting your solution
weird crashes when initially constructing the statement cache
http://oss.itsystementwicklung.de/trac/pysqlite/ticket/146 - found by yliu on February 12, 2009, 12:31 PM UTC
Re: [sqlite] Segmentation Fault when using mod_python / mod_wsgi
http://www.mail-archive.com/[email protected]/msg34866.html - found by yliu on February 12, 2009, 12:30 PM UTC
symbol clash with mod_*_cache under Apache. 1. Disable the mod_cache and associated mod_*_cash modules in Apache 2. Install a newer version of PySQLite > 2.3.2 and then do the following changes # Change this import sqlite3 # to this from pysqlite2 import dbapi2 as sqlite3 3. Remove the existing sqlite3 module in Python 2.5 and replace it with a module that does a from pysqlite2.dbapi2 import *