如何配置wsgi应用程序以迁移到Django 1.7?

我正在尝试从Django 1.6升级到1.7.

运行python manage.py runserver时,出现以下错误:

django.core.exceptions.ImproperlyConfigured: WSGI application 'myapp.wsgi.application' could not be loaded; Error importing module: 'cannot import name get_path_info'

这是我的settings.py中的相应行:

WSGI_APPLICATION = 'myapp.wsgi.application'

这是我的wsgi.py文件:

import os

# We defer to a DJANGO_SETTINGS_MODULE already in the environment. This breaks
# if running multiple sites in the same mod_wsgi process. To fix this, use
# mod_wsgi daemon mode with each site in its own daemon process, or use
# os.environ["DJANGO_SETTINGS_MODULE"] = "myapp.settings"
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myapp.settings")

# This application object is used by any WSGI server configured to use this
# file. This includes Django's development server, if the WSGI_APPLICATION
# setting points here.
from django.core.wsgi import get_wsgi_application

# Apply WSGI middleware here.
# from helloworld.wsgi import HelloWorldApplication
# application = HelloWorldApplication(application)

from dj_static import Cling
application = Cling(get_wsgi_application())

有解决的办法吗?

解决方法:

您正在使用哪个版本的dj_static?

我升级到Django 1.7,并且网站崩溃了,这使我想到了您的问题.

我检查了dj_static版本(我一直在使用0.0.5,并注意到在撰写本文时,最新版本为0.0.6).

更新dj_static后,我的网站在Django 1.7下似乎正常运行.

上一篇:在前端眼中pc端和移动的开发区别


下一篇:python – 为什么Apache / WSGI将HEAD映射到GET?如何加速烧瓶中的HEAD?