2013-02-10 30 views
6

我的应用程序昨晚工作,不知道为什么今天早上它不能工作。我认为我所做的只是创建一个名为django的应用程序来存储我的模型,测试和视图。django错误:配置不正确:WSGI应用程序

收到此错误,用在OS X上的Heroku Postgres的应用和dj_database中间件上运行Django:

File "/Users/{ME}/Projects/{PROJECT}/{PROJECT}/lib/python2.7/site-packages/django/core/servers/basehttp.py", line 58, in get_internal_wsgi_application 
    "could not import module '%s': %s" % (app_path, module_name, e)) django.core.exceptions.ImproperlyConfigured: WSGI application 
'{PROJECT}.wsgi.application' could not be loaded; could not import module 
'{PROJECT}.wsgi': No module named core.wsgi 
wsgi.py文件的

相关部分:

""" 
WSGI config for {PROJECT} project. 

This module contains the WSGI application used by Django's development 
server and any production WSGI deployments. It should expose a 
module-level variable named ``application``. Django's ``runserver`` 
and ``runfcgi`` commands discover this application via the 
``WSGI_APPLICATION`` setting. 

Usually you will have the standard Django WSGI application here, but 
it also might make sense to replace the whole Django WSGI application 
with a custom one that later delegates to the Django one. For example, 
you could introduce WSGI middleware here, or combine a Django 
application with an application of another framework. 

""" 
import os 

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "do.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 
application = get_wsgi_application() 

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

相关的(我认为)的一部分我的settings.py文件:

WSGI_APPLICATION = '{PROJECT}.wsgi.application' 

# ... 

import dj_database_url 
DATABASES['default'] = dj_database_url.config(default='sqlite://db/sqlite3.db') 

回答

7

创建名为django的应用程序意味着任何from django import X都将查看您的应用程序,而不是django框架。

在这种情况下,软件正试图导入django.core.wsgi,但它正在您的应用程序的代码中查找此文件,无法找到该文件;因此错误:No module named core.wsgi


为您的应用的另一个名字。

您必须重命名包含您的应用的文件夹以及settings.py中的INSTALLED_APPS条目。

+0

是做到了!谢谢! – fox 2013-02-10 19:46:35

+0

@fox乐于帮忙!记住要确保永远不要用你的方法覆盖另一个Python的模块:) – 2013-02-10 19:46:56

+0

是的,有道理。还有一个问题 - 应用程序从未在“INSTALLED_APPS”下列出。我忘记了,如果应用程序的目录位于我当前的项目目录(例如'project \ app')中,我是否必须在那里列出它以供django使用? – fox 2013-02-10 19:53:03

0

从Django的documentation

You’ll need to avoid naming projects after built-in Python or Django components. In particular, this means you should avoid using names like django (which will conflict with Django itself) or test (which conflicts with a built-in Python package).

相关问题