私のPCで動作するDjangoサイトがあり、それをロードした後にサーバー上で短時間動作していました。サーバーがDjango 1.6および1.8にアップグレードしました。
再起動後、サイト上のページがロードされず、エラーが表示されます。
ImportError context_processorsという名前のモジュールはありません
Django and allauth。Django= 1.8では、context_processorsが移動し、allauthはTEMPLATE_CONTEXT_PROCESSORS
of settings.py
。
Django: https://docs.djangoproject.com/en/1.8/ref/settings/
Allauth: https://Django-allauth.readthedocs.org/en/latest/installation.html
他の誰かがこれに遭遇しますか?私は正しい軌道に乗っていますか?設定で何かを変更する必要がありますか? Djangoまたはallauthの問題なのかわかりませんので、どこから始めればよいのかわかりません。
どんな助けも大歓迎です!
トレースバック:
Django Version: 1.8.4
Python Version: 2.7.6
Installed Applications:
('Django.contrib.admin',
'Django.contrib.auth',
'Django.contrib.contenttypes',
'Django.contrib.sessions',
'Django.contrib.messages',
'Django.contrib.staticfiles',
'plant',
'journal',
'userimg',
'Django.contrib.sites',
'allauth',
'allauth.account')
Installed Middleware:
('Django.contrib.sessions.middleware.SessionMiddleware',
'Django.middleware.common.CommonMiddleware',
'Django.middleware.csrf.CsrfViewMiddleware',
'Django.contrib.auth.middleware.AuthenticationMiddleware',
'Django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'Django.contrib.messages.middleware.MessageMiddleware',
'Django.middleware.clickjacking.XFrameOptionsMiddleware')
Traceback:
File "/usr/local/lib/python2.7/dist-packages/Django-1.8.4-py2.7.Egg/Django/core/handlers/base.py" in get_response
132. response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/Django/django_project/plant/views.py" in plant_main
24. return render(request, 'plant/plant_main.html', context)
File "/usr/local/lib/python2.7/dist-packages/Django-1.8.4-py2.7.Egg/Django/shortcuts.py" in render
67. template_name, context, request=request, using=using)
File "/usr/local/lib/python2.7/dist-packages/Django-1.8.4-py2.7.Egg/Django/template/loader.py" in render_to_string
99. return template.render(context, request)
File "/usr/local/lib/python2.7/dist-packages/Django-1.8.4-py2.7.Egg/Django/template/backends/Django.py" in render
74. return self.template.render(context)
File "/usr/local/lib/python2.7/dist-packages/Django-1.8.4-py2.7.Egg/Django/template/base.py" in render
208. with context.bind_template(self):
File "/usr/lib/python2.7/contextlib.py" in __enter__
17. return self.gen.next()
File "/usr/local/lib/python2.7/dist-packages/Django-1.8.4-py2.7.Egg/Django/template/context.py" in bind_template
237. processors = (template.engine.template_context_processors +
File "/usr/local/lib/python2.7/dist-packages/Django-1.8.4-py2.7.Egg/Django/utils/functional.py" in __get__
60. res = instance.__dict__[self.name] = self.func(instance)
File "/usr/local/lib/python2.7/dist-packages/Django-1.8.4-py2.7.Egg/Django/template/engine.py" in template_context_processors
90. return Tuple(import_string(path) for path in context_processors)
File "/usr/local/lib/python2.7/dist-packages/Django-1.8.4-py2.7.Egg/Django/template/engine.py" in <genexpr>
90. return Tuple(import_string(path) for path in context_processors)
File "/usr/local/lib/python2.7/dist-packages/Django-1.8.4-py2.7.Egg/Django/utils/module_loading.py" in import_string
26. module = import_module(module_path)
File "/usr/lib/python2.7/importlib/__init__.py" in import_module
37. __import__(name)
Exception Type: ImportError at /plant/
Exception Value: No module named context_processors
問題は、Django 1.8にアップグレードした後、settings.pyに必要なTEMPLATES設定がなかったことです。Djangoサーバー。
Allauthドキュメントから、これを設定ファイルに貼り付けました。
TEMPLATES = [
{
'BACKEND': 'Django.template.backends.Django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
# Already defined Django-related contexts here
# `allauth` needs this from Django
'Django.template.context_processors.request',
],
},
},
]
そして、古いTEMPLATE_DIRS
設定の内容をTEMPLATESのDIRS定義にコピーしました。最終結果は次のようになります。
TEMPLATES = [
{
'BACKEND': 'Django.template.backends.Django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
# Already defined Django-related contexts here
# `allauth` needs this from Django
'Django.template.context_processors.request',
],
},
},
]
最近のallauth更新のドキュメントによると、context_processors
設定ではなく、TEMPLATE_CONTEXT_PROCESSORS
をTEMPLATES設定で指定する必要があります。
Joey Wilhelm に感謝します。
同じ問題が発生しましたが、1.9.1から1.10にアップグレードしています。設定に少し違いがあることがわかりました。
これは1.9.1のコードです
TEMPLATES = [
{
'BACKEND': 'Django.template.backends.Django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'Django.template.context_processors.debug',
'Django.template.context_processors.request',
'Django.core.context_processors.request',
'Django.contrib.auth.context_processors.auth',
'Django.contrib.messages.context_processors.messages',
],
},
},
]
これは1.10のコードです
TEMPLATES = [
{
'BACKEND': 'Django.template.backends.Django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, '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',
],
},
},
]
この線 Django.core.context_processors.request
は1.10では無効です。削除すると、コードはうまく機能します。
ちょっとしたヒント:トレースバックで情報が提供されない場合、コードの正確な行を識別する必要があります。 DEBUG
モードを有効にして、ブラウザでページを開くと役立つ場合があります。この素晴らしい小さなlocal_vars
要素。トレースバックが発生したときにローカル変数の状態を確認できます。とても便利です!
(私の場合、allauth内の変更に関連していました)
私の場合、settings.pyの次の行を削除する必要がありました。
'Django.core.context_processors.csrf',
サーバーを再起動しましたが、その後そのエラーは再び表示されませんでした。
ソースが更新されました: https://docs.djangoproject.com/en/1.11/ref/templates/upgrading/
TEMPLATES = [
{
'BACKEND': 'Django.template.backends.Django.DjangoTemplates',
'DIRS': [
# insert your TEMPLATE_DIRS here
],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
# Insert your TEMPLATE_CONTEXT_PROCESSORS here or use this
# list if you haven't customized them:
'Django.contrib.auth.context_processors.auth',
'Django.template.context_processors.debug',
'Django.template.context_processors.i18n',
'Django.template.context_processors.media',
'Django.template.context_processors.static',
'Django.template.context_processors.tz',
'Django.contrib.messages.context_processors.messages',
],
},
},
]