当前位置: 首页 > 面试题库 >

如何停止获取ImportError:将django与wsgi一起使用时无法导入设置'mofin.settings'?

应瀚
2023-03-14
问题内容

我无法让wsgi导入项目“ mofin”的设置文件。

apache错误日志中的错误列表如下

mod_wsgi (pid=4001): Exception occurred within WSGI script '/var/www/wsgi-scripts/django.wsgi'.
Traceback (most recent call last):
  File "/usr/lib/python2.5/site-packages/django/core/handlers/wsgi.py", line 228, in __call__
    self.load_middleware()
  File "/usr/lib/python2.5/site-packages/django/core/handlers/base.py", line 31, in load_middleware
    for middleware_path in settings.MIDDLEWARE_CLASSES:
  File "/usr/lib/python2.5/site-packages/django/conf/__init__.py", line 28, in __getattr__
    self._import_settings()
  File "/usr/lib/python2.5/site-packages/django/conf/__init__.py", line 59, in _import_settings
    self._target = Settings(settings_module)
  File "/usr/lib/python2.5/site-packages/django/conf/__init__.py", line 94, in __init__
    raise ImportError, "Could not import settings '%s' (Is it on sys.path? Does it have syntax errors?): %s" % (self.SETTINGS_MODULE, e)
ImportError: Could not import settings 'mofin.settings' (Is it on sys.path? Does it have syntax errors?): No module named mofin.settings

我得到了“你好,世界!” 此处列出的wsgi应用程序(http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide)可以正常工作。

与应用程序一样,settings.py文件也可以通过python manage.py(runserver | shell | syncdb | test存储)很好地加载。

这是我的wsgi文件:

import os
import sys
sys.path.append('/home/django/mofin/trunk')
sys.path.append('/home/django/mofin/trunk/mofin')
print >> sys.stderr, sys.path
os.environ['DJANGO_SETTINGS_MODULE'] = 'mofin.settings'

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

错误日志中显示的sys.path是

['/usr/lib/python25.zip'、'/usr/lib/python2.5'、'/usr/lib/python2.5/plat-linux2'、'/usr/lib/python2.5/lib- tk','/ usr / lib / python2.5 / lib-dynload','/ usr / lib / python2.5 / site-packages','/ usr / lib / python2.5 / site-packages / gtk-2.0 ','/ home / django / mofin / trunk','/ home / django / mofin / trunk / mofin']

如果我使用manage.py打开一个交互式外壳,则sys.path是

['/home/django/mofin/trunk/mofin'、'/usr/lib/python25.zip'、'/usr/lib/python2.5'、'/usr/lib/python2.5/plat-linux2' ,'/usr/lib/python2.5/lib-tk'、'/usr/lib/python2.5/lib-dynload','/usr/lib/python2.5/site-packages','/ usr / lib / python2.5 / site-packages / gtk-2.0']

我的django设置文件如下所示:#mofin项目的Django设置。

DEBUG = True
TEMPLATE_DEBUG = DEBUG

ADMINS = (
    # ('Dan xxxx', 'xxxx@yyyyyyyyyy.com'),
)

MANAGERS = ADMINS

DATABASE_ENGINE = 'mysql'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
DATABASE_NAME = 'mofin'             # Or path to database file if using sqlite3.
DATABASE_USER = 'aaaaaa'             # Not used with sqlite3.
DATABASE_PASSWORD = 'bbbbbb'         # Not used with sqlite3.
DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.

# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# If running in a Windows environment this must be set to the same as your
# system time zone.
TIME_ZONE = 'Europe/London'

# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE = 'en-GB'

SITE_ID = 1

# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
USE_I18N = True

# Absolute path to the directory that holds media.
# Example: "/home/media/media.lawrence.com/"
MEDIA_ROOT = '/home/django/media/'

问题答案:

如果你有一个与项目名称相同的应用程序(项目的子目录中有一个初始化文件),也会发生这种情况。你的settings.py文件可能位于项目文件夹中,但似乎django系统的一部分会首先在项目中查找与项目同名的模块,并且无法在其中找到settings.py。 ,失败并显示误导性消息

-uniquename1

---settings.py

---manage.py

---application1

-----file.py

-----file2.py

---uniquename1  (problem, rename this to some other unique name)

-----file.py

-----file2.py

只是要检查其他人是否遇到此问题。适用于Django 1.3,可能还适用于其他版本。



 类似资料:
  • 问题内容: 我正在尝试在Django中开发示例项目,并且在运行syncdb命令时遇到错误。 这是我的项目结构的样子: / Users / django_demo / godjango / bookings: 我的manage.py文件如下: 我的PYTHONPATH和DJANGO_SETTINGS_MODULE设置如下 我的WSGI.py文件如下所示: 当我运行python manage.py s

  • 问题内容: 我已经在pycharm中配置了virtualenv,当使用python manage.py命令时,显示错误: 我应该如何解决,我已经安装了django。 问题答案: 我认为使用django的最佳方法是使用virtualenv,它是安全的,你可以在virtualenv中安装许多应用程序,而这不会影响系统的任何外部空间。vitualenv使用python的默认版本,与在系统中安装virtu

  • 我正在用django教程跳探戈。我已经到了第五章关于模型的工作,我正在建立管理网站。我有一个奇怪的错误: 导入错误:无法导入名称获取\u权限\u代码名 当我移除 从我的项目/URL。皮耶。但我担心我以后会需要这个。 以下是我运行开发服务器时得到的回溯: 环境: 请求方法:获取请求URL:http://127.0.0.1:8000/admin/ Django版本:1.5。4 Python版本:2.7

  • 我试图在第三方的模式文件上运行xjc(它是Amazon.com的产品API)。我遇到了麻烦,因为对于其中一个文件default.xsd,xjc忽略了以下导入(它是模式声明之后的第一个导入): [警告]schema_reference.4:无法读取架构文档“xml.xsd”,因为1)找不到该文档;2)无法读取该文档;3)文档的根元素不是。文件:/c://temp/amazon/default.xsd

  • 问题内容: 现在,我使用setAdapter更新我的ListView,但我认为正确的方法是使用notifiyDatasetChanged(),但我无法在主类中使用它(它在适配器中)。这是错误: ListAdapter类型的方法notifyDatasetChanged()未定义 我猜想有一种更好的方法-有人能指出我正确的方向吗? 这是我的代码的相关部分: 这是适配器: 问题答案: 创建您的自定义适配

  • 问题内容: 我有两个文件, app.py mod_login.py 而python返回此错误: 如果删除from app import app,代码将起作用,但是如何访问? 问题答案: 问题是你有一个循环导入:在app.py中 在mod_login.py中 这在Python中是不允许的。有关更多信息,请参见Python中的循环导入依赖项。简而言之,解决方案是 要么将所有内容收集到一个大文件中 使用