I installed production in ubuntu 12.04.
--
You received this message because you are subscribed to the Google Groups "General Open edX discussion" group.
To view this discussion on the web visit https://groups.google.com/d/msgid/edx-code/20f9ea2d-4efd-48fa-a2b1-b230f3a3285b%40googlegroups.com.
My partner found the way to doing this by using session cookies.
....
Session sharing can de done by simply changing the SESSION_COOKIE_DOMAIN configuration in the following places
/edx/app/edxapp/lms.env.json
/edx/app/edxapp/cms.env.json
Make sure that the SESSION_COOKIE_NAME is the same for both configurations. (If it's already the same it doesn't have to be changed)
"SESSION_COOKIE_DOMAIN": ".edxlocal.com",
"SESSION_COOKIE_NAME": "sessionid",
For example, studio.edxlocal.com and edxlocal.com. The session cookie domain will be ".edxlocal.com"
In order to make sure it works with other extension of ours, add the "SESSION_ENGINE" configuration line at the end of the configuration file
"ZENDESK_URL": "",
"SESSION_ENGINE": "django.contrib.sessions.backends.cached_db"
}
then restart LMS and CMS
Thx