Python Forum

Full Version: Session engine in Django
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How i can configure session engine in Django through File based sessions?
By using file-based sessions, you will have to set the setting of SESSION_ENGINE to django.contib.sessions.backends.file

You will also have to check that your web server has permissions to read and write the directory of the session file.

There are 3 more ways to configure session engine in Django; Database-backed sessions, Cached sessions, and Cookie-based sessions.