Django + Apache wsgi =路径问题

时间:2010-05-13 09:30:55

标签: python django path wsgi

我有这个视图,它生成界面语言选项菜单

def lang_menu(request,language):

    lang_choices = []
    import os.path

    for lang in settings.LANGUAGES:
        if os.path.isfile("gui/%s.py" % lang) or os.path.isfile("gui/%s.pyc" % lang):
            langimport = "from gui.%s import menu" % lang
            try:
                exec(langimport)
            except ImportError:
                lang_choices.append({'error':'invalid language file'})
            else:
                lang_choices.append(menu)
        else:
            lang_choices.append({'error':'lang file not found'})

    t = loader.get_template('gui/blocks/lang_menu_options.html')

    data = ''

    for lang in lang_choices:
        if not 'error' in lang:
            data = "%s\n%s" % (data,t.render(Context(lang)))

    if not data:
        data = "Error! No languages configured or incorrect language files!"

    return Context({'content':data})

当我使用开发服务器(python manage.py runserver ...)时,它工作正常。但当我将我的应用程序移植到apache wsgi服务器时,我收到错误“No languages configured or incorrect language files!

这是我的Apache配置

<VirtualHost *:9999>

WSGIScriptAlias / "/usr/local/etc/django/terminal/django.wsgi"

<Directory "/usr/local/etc/django/terminal">
    Options +ExecCGI
    Allow From All
</Directory>

Alias /media/ "/usr/local/lib/python2.5/site-packages/django/contrib/admin/media/"
<Location /media/>
    SetHandler None
</Location>

<Directory "/usr/local/lib/python2.5/site-packages/django/contrib/admin/media/>
    Allow from all
</Directory>

Alias /static/ "/usr/local/etc/django/terminal/media/"
<Location /static/>
    SetHandler None
</Location>

ServerName *******
ServerAlias *******
ErrorLog /var/log/django.error.log
TransferLog /var/log/django.access.log

</VirtualHost>

django.wsgi:

import os, sys
sys.path.append('/usr/local/etc/django')
sys.path.append('/usr/local/etc/django/terminal')
os.environ['DJANGO_SETTINGS_MODULE'] = 'terminal.settings'

import django.core.handlers.wsgi

application = django.core.handlers.wsgi.WSGIHandler()

这看起来像路径配置的问题,但我被困在这里......

3 个答案:

答案 0 :(得分:2)

如果您在lang_menu中调用它,这会给您正确的路径吗?

os.path.abspath(os.path.dirname(__file__))

如果确实指向了视图模块所在的目录,则可以从那里构建一个绝对路径,例如:

here = lambda *x: os.path.join(os.path.abspath(os.path.dirname(__file__)), *x)
if os.path.isfile(here('gui', '%s.py' % lang)):
    ...

答案 1 :(得分:1)

很难看到发生了什么,因为虽然你在循环中存储了有用的错误,但你最后会用一般错误覆盖它们。实际列出遇到的错误会更有帮助。

我还会质疑你为什么要手动管理语言文件,而不是使用内置的国际化/本地化处理。

答案 2 :(得分:1)

问题可能出在os.path.isfile("gui/%s.py" % lang)行。你在这里使用相对路径。改为使用绝对路径,你应该没事。

其他一些建议:

  1. 请勿使用exec导入文件。请改用__import__
  2. 不要查找文件来决定配置!这是缓慢而不可靠的。例如,将数据存储在数据库中。