我正在尝试安装一个开源 Django 应用程序(OSQA),但我收到此错误:
[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"
这是我的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()
在httpd.conf我有WSGIScriptAlias
:
WSGISocketPrefix ${APACHE_RUN_DIR}
WSGIPythonPath /home/fuiba/webapps/osqa:/home/fuiba/webapps/osqa/lib/python2.7
WSGIScriptAlias / /home/fuiba/webapps/osqa/osqa.wsgi
在 apache2 文件夹(/home/fuiba/webapps/osqa/apache2
)中,我得到一个名称奇怪的文件: ${APACHE_RUN_DIR}.47892.0.1.sock
它是什么?
任何帮助表示赞赏。
谢谢!