Django Middleware Error - Middleware changed for 1.7

后端 未结 2 1399
梦谈多话
梦谈多话 2021-01-11 17:59

Whenever I run my local server with my django project I am getting a warning and an error message saying that in Django 1.7 the global middleware classes were changed - even

相关标签:
2条回答
  • 2021-01-11 18:07

    I created my project using django 1.11 but when I transferred the files to the web server, I encountered errors with fcgi which forced me to downgrade to 1.8. Therefore the error came up because admin was now expecting MIDDLEWARE_CLASSES instead of MIDDLEWARE. Changing that solved the error.

    0 讨论(0)
  • 2021-01-11 18:23

    The MIDDLEWARE setting was introduced in Django 1.10. If you are using Django 1.9 or earlier it will have no effect, and you should be using the MIDDLEWARE_CLASSES setting instead.

    Make sure you are using the correct version of the docs (e.g. Django 1.8, Django 1.11), so that you follow the correct instructions.

    0 讨论(0)
提交回复
热议问题