I can\'t get wsgi to import my settings file for my project \'mofin\'.
The list of errors from the apache error log are as follows
mod_wsgi (pid=4001
Possible problem:
you forgot the __init__.py file, which must be in your project and in all directories which you consider a python module for import.
Other thing you could try is to add the path directly into the manage.py file, like :
import sys
...
...
sys.path.insert(0, '/home/django/mofin/trunk')
I hope it helps