Django project looking for “attribute '_session_cache'”

前端 未结 4 773
暗喜
暗喜 2020-12-20 14:58

So I have a Django project that doesn\'t use a database (the \'DATABASES\' setting is commented out). I chose to use Django as there\'s a chance I will need the database fun

相关标签:
4条回答
  • 2020-12-20 15:33

    The error AttributeError: 'SessionStore' object has no attribute '_session_cache' can stem from the database not having a django_session table. However, since you are not using a table, you would need to make sure that you don't have the 'django.contrib.sessions.middleware.SessionMiddleware' in your MIDDLEWARE_CLASSES in the project's settings file. If it is in there, it will look for a database table which stores the sessions, causing the above error.

    0 讨论(0)
  • 2020-12-20 15:40

    I'm not sure why I started to get this error, it involved an upgrade though. I just deleted all the sessions and after logging back in all was well.

    # from the shell but equivalent sql would work fine too
    from django.contrib.sessions.models import Session
    Session.objects.all().delete()
    
    0 讨论(0)
  • 2020-12-20 15:53

    For future Googlers - I ran into this issue and the above solutions did not work for me. What did work for me was clearing/deleting my cookies in Chrome for the 127.0.0.1 URL. So go to Settings or press CMD+, then Cookies and other site data, then find 127.0.0.1 or localhost and delete those cookies. Refresh the local dev host page and the error should be gone. This has something to do with a corrupted session / cookie file.

    0 讨论(0)
  • 2020-12-20 15:55

    Here is what worked for me. Since there is no databases in your application. Admin page looks for the database be it default. So first lets create the default databases.

    Shut down your servers and run

    python manage.py makemigrations
    python manage.py migrate
    

    Now create the admin or superuser for your application. Fill username and password.

    python manage.py createsuperuser
    

    Now restart your server and go the admin page

    python manage.py runserver
    
    0 讨论(0)
提交回复
热议问题