当我尝试访问管理页面时,它给了我以下错误:
System check identified no issues (0 silenced).
June 21, 2016 - 15:26:14
Django version 1.9.7, using settings 'librato_chart_sender_web.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
Internal Server Error: /admin/
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/django/core/handlers/base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "/Library/Python/2.7/site-packages/django/core/handlers/base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/Library/Python/2.7/site-packages/django/contrib/admin/sites.py", line 265, in wrapper
return self.admin_view(view, cacheable)(*args, **kwargs)
File "/Library/Python/2.7/site-packages/django/utils/decorators.py", line 149, in _wrapped_view
response = view_func(request, *args, **kwargs)
File "/Library/Python/2.7/site-packages/django/views/decorators/cache.py", line 57, in _wrapped_view_func
response = view_func(request, *args, **kwargs)
File "/Library/Python/2.7/site-packages/django/contrib/admin/sites.py", line 233, in inner
if not self.has_permission(request):
File "/Library/Python/2.7/site-packages/django/contrib/admin/sites.py", line 173, in has_permission
return request.user.is_active and request.user.is_staff
AttributeError: 'WSGIRequest' object has no attribute 'user'
[21/Jun/2016 15:26:18] "GET /admin/ HTTP/1.1" 500 78473
我在django相当新...但我遵循了这个教程:https://docs.djangoproject.com/en/1.9/ref/contrib/admin/
我没有任何自定义AdminSites和自定义AdminModel。
我已经在谷歌上搜索了这个问题,但我仍然不能以任何方式解决我的情况。你能帮忙吗?
下面是我settings.py
:
"""
Django settings for librato_chart_sender_web project.
Generated by 'django-admin startproject' using Django 1.11.dev20160523235928.
For more information on this file, see
https://docs.djangoproject.com/en/dev/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/dev/ref/settings/
"""
import os
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/dev/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '*1@+=wzrqx^6$9z&@2@d8r(w$js+ktw45lv2skez(=kz+rwff_'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'librato_chart_sender',
'fontawesome',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'librato_chart_sender_web.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'librato_chart_sender/templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'librato_chart_sender_web.wsgi.application'
# Database
# https://docs.djangoproject.com/en/dev/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Password validation
# https://docs.djangoproject.com/en/dev/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/dev/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'GMT'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/dev/howto/static-files/
STATIC_URL = '/static/'
STATICFILES_DIRS = [
('css', 'librato_chart_sender/static/css'),
('js', 'librato_chart_sender/static/js'),
('fonts', 'librato_chart_sender/static/fonts'),
]
和admin.py
:
from django.contrib import admin
from .models import Configuration
# Register your models here.
admin.site.register(Configuration)
7条答案
按热度按时间wyyhbhjk1#
要解决这个问题,请访问
settings.py
,那里有新风格的MIDDLEWARE
(Django 1.10中引入)将其更改为旧式
MIDDLEWARE_CLASSES
https://docs.djangoproject.com/en/stable/topics/http/middleware/#upgrading-pre-django-1-10-style-middleware
8wtpewkr2#
我找到答案了。变量名在:
MIDDLEWARE
是Django 1.10中引入的新式配置。将名称更改为MIDDLEWARE_CLASSES
,现在它可以工作了。现在代码是:
q3qa4bjr3#
如果有人在使用Django 2.0时遇到这个问题,下面的新风格
MIDDLEWARE
配置似乎可以工作(docs here):ix0qys7i4#
如果有人在django2.0.2或更高版本中遇到同样的问题,
刚刚更新
与
这对我很有效,因为我用django1.0.x创建了我的项目,但后来更新到了django2.0.2
acruukt95#
您不应该将MIDDLEWARE更改为MIDDLEWARE_CLASSES。这里发生的情况更有可能是您使用django 1.10创建了应用程序,而现在您正在使用1.9或更早的版本运行它。
确保使用特定版本的django(以及所有其他库),这样当在不同的机器上部署或运行时,您的项目就不会中断。
如果您有一个稳定的代码库,只需运行:
然后,在部署或设置新环境时,只需执行以下操作:
您应该始终考虑使用库的固定版本(最好是虚拟环境),并且在升级依赖项时测试每个版本的更改。
70gysomp6#
我在我的生产服务器中也有类似的错误,多亏了sentry的breadcrumb,我发现引发的错误与我的设置有关,特别是ALLOWED_HOSTS。
Django版本1.10.8,带有python 2.7。
我以前的设置:
Sentry面包屑屏幕截图:
之后我四处看了看,发现了这个:
Django官方文档链接
所以我的最终设置解决了我的问题:
希望这是有用的:)
ifsvaxew7#
我的解决方案是,我的Django版本是1.9,我重新安装回1.10,而没有将MIDDLEWARE更改为MIDDLEWARE_CLASSES。