4π
β
It looks like you are using a version of django prior to version 1.7 (1.6.4 to be specific), and SessionAuthenticationMiddleware
was not introduced until django 1.7. Hence the error
Documentation can be found here
On the bottom right, you can choose the version of django. Select the appropriate version, and follow the tutorial specific to the version of django you are using.
π€karthikr
1π
just delete the following session authentication middleware from your project settings.py
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
π€0x3bfc
- [Django]-Confused about making a CSV file into a ZIP file in django
- [Django]-How to implement restful webservice with python/django
- [Django]-How to show current file in templates with Django FileFields
- [Django]-Django ModelChoiceField allow objects creation
- [Django]-Django Compressor on a multi-server deployment
Source:stackexchange.com