Removed caches since they are not used. Back to db based session storage. Re-added sessions backend.

This commit is contained in:
Martin Mahner 2013-11-25 09:12:25 +01:00
parent 984fcae343
commit 715be017dd

View file

@ -95,6 +95,8 @@ TEMPLATE_CONTEXT_PROCESSORS += (
INSTALLED_APPS = (
'django.contrib.staticfiles',
'django.contrib.sessions',
'mptt',
'south',
'gunicorn',
@ -110,14 +112,6 @@ DATABASES = {
}
}
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
}
}
SESSION_ENGINE = 'django.contrib.sessions.backends.cache'
#==============================================================================
# App specific settings
#==============================================================================