I am trying to install an open-source Django application (OSQA) but i get this error:
[Tue Sep 24 10:37:09 2013] [error] mod_wsgi (pid=82486): Exception occurred processing WSGI script '/home/fuiba/webapps/osqa/osqa.wsgi'.
[Tue Sep 24 10:37:09 2013] [error] Traceback (most recent call last):
[Tue Sep 24 10:37:09 2013] [error] File "/home/fuiba/webapps/osqa/lib/python2.7/django/core/handlers/wsgi.py", line 232, in __call__
[Tue Sep 24 10:37:09 2013] [error] self.load_middleware()
[Tue Sep 24 10:37:09 2013] [error] File "/home/fuiba/webapps/osqa/lib/python2.7/django/core/handlers/base.py", line 42, in load_middleware
[Tue Sep 24 10:37:09 2013] [error] raise exceptions.ImproperlyConfigured('Error importing middleware %s: "%s"' % (mw_module, e))
[Tue Sep 24 10:37:09 2013] [error] ImproperlyConfigured: Error importing middleware django.contrib.sessions.middleware: "No module named base"
This is my osqa.wsgi:
import os
import sys
sys.path.append('/home/fuiba/webapps/osqa/osqa')
from django.core.handlers.wsgi import WSGIHandler
os.environ['DJANGO_SETTINGS_MODULE'] = 'osqa.settings'
application = WSGIHandler()
In httpd.conf i have WSGIScriptAlias:
WSGISocketPrefix ${APACHE_RUN_DIR}
WSGIPythonPath /home/fuiba/webapps/osqa:/home/fuiba/webapps/osqa/lib/python2.7
WSGIScriptAlias / /home/fuiba/webapps/osqa/osqa.wsgi
In apache2 folder (/home/fuiba/webapps/osqa/apache2) i get a file with strange name: ${APACHE_RUN_DIR}.47892.0.1.sock
What is it?
Any help is appreciated.
Thank you!