2

我正在尝试在我的虚拟主机上设置 django 并陷入此错误:

MOD_PYTHON ERROR

ProcessId:      4496
Interpreter:    'ouiop'

ServerName:     'ouiop.com'
DocumentRoot:   '/var/www/vhosts/ouiop.com/httpdocs'

URI:            '/'
Location:       '/'
Directory:      None
Filename:       '/var/www/vhosts/ouiop.com/httpdocs/'
PathInfo:       ''

Phase:          'PythonHandler'
Handler:        'django.core.handlers.modpython'

Traceback (most recent call last):

  File "/usr/lib/python2.7/dist-packages/mod_python/importer.py", line 1537, in HandlerDispatch
    default=default_handler, arg=req, silent=hlist.silent)

  File "/usr/lib/python2.7/dist-packages/mod_python/importer.py", line 1202, in _process_target
    module = import_module(module_name, path=path)

  File "/usr/lib/python2.7/dist-packages/mod_python/importer.py", line 304, in import_module
    return __import__(module_name, {}, {}, ['*'])

ImportError: No module named modpython

我在网上做了一些研究,看看是否有人有同样的问题,但没有运气解决它:/

这也是我的 vhosts.conf

<Location "/">
SetHandler python-program
PythonPath "['/var/www/vhosts/ouiop.com/httpdocs/django_projects'] + sys.path"
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE ouiop.settings
PythonDebug On
PythonInterpreter ouiop
</Location>

<Location "/media">
SetHandler None
</Location>

<LocationMatch "\.(jpg|gif|png)$">
SetHandler None
</LocationMatch>

任何帮助表示赞赏

谢谢

4

2 回答 2

6

您可能正在使用已停止支持 mod_python 的 Django 1.5

对于切换到 wsgi,请参见http://library.linode.com/frameworks/django-apache-mod-wsgi/ubuntu-10.04-lucid

于 2013-04-27T15:39:49.037 回答
0

你需要 apache 的 mod_python 库

http://www.modpython.org/

顺便说一句,这已被弃用。您可能应该使用 mod_wsgi

于 2012-07-13T09:34:28.473 回答