Sessions work fine in all other browsers I tested.
If I try to get the session id with sessionid = request.COOKIES['sessionid'], I get this error:KeyError: 'sessionid'
This is what I have in my .py settings:
CACHE_BACKEND = 'memcached://127.0.0.1:11211/'
SESSION_COOKIE_DOMAIN = '.vb.is'
SESSION_ENGINE = 'django.contrib.sessions.backends.cache'
Sites - vb.is, fiskifrettir.vb.is and hestabladid.vb.is

Server setup: apache2 (mod_wsgi) and nginx
demux source
share