[Fixed]-Issue with Django 2.0 : 'WSGIRequest' object has no attribute 'session'

22👍

8👍

MIDDLEWARE_CLASSES has been deprecated since Django 1.10 and was removed completely in version 2.0. That means you have no middleware at all.

You should use the MIDDLEWARE setting instead; note, that uses new-style middleware, you might need to upgrade your custom middleware class.

Leave a comment