I have example.com and support.example.com . If a user is logged in on the main site, I\'d like to have the session be accessible from the support site.
Setting the
Following value should be same in all your django applications
SESSION_COOKIE_DOMAIN = ".example.com" SESSION_COOKIE_NAME = "anycookiename" SECRET_KEY="anykey"
If you are using memcached, set same memcached location in all your django applications.