summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-04-29 16:45:19 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-04-29 16:45:19 -0300
commitf4a72b0cd2bd5eacdf4e0b466d7761f8d1a06ee7 (patch)
treebafc9402ab34028e9806bb50e24be541454d3002
parent0b9212c4b06dbdcb479e66ae7af467ed7540a689 (diff)
downloadaskbot-f4a72b0cd2bd5eacdf4e0b466d7761f8d1a06ee7.tar.gz
askbot-f4a72b0cd2bd5eacdf4e0b466d7761f8d1a06ee7.tar.bz2
askbot-f4a72b0cd2bd5eacdf4e0b466d7761f8d1a06ee7.zip
fixed the cached_db setting for the SESSION_ENGINE setting that is commented out
-rw-r--r--askbot/setup_templates/settings.py2
-rw-r--r--askbot/setup_templates/settings.py.mustache2
2 files changed, 2 insertions, 2 deletions
diff --git a/askbot/setup_templates/settings.py b/askbot/setup_templates/settings.py
index f9920bca..191d13f3 100644
--- a/askbot/setup_templates/settings.py
+++ b/askbot/setup_templates/settings.py
@@ -183,7 +183,7 @@ CACHE_TIMEOUT = 6000
CACHE_PREFIX = 'askbot' #make this unique
CACHE_MIDDLEWARE_ANONYMOUS_ONLY = True
#If you use memcache you may want to uncomment the following line to enable memcached based sessions
-#SESSION_ENGINE = 'django.contrib.sessions.backends.cache_db'
+#SESSION_ENGINE = 'django.contrib.sessions.backends.cached_db'
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
diff --git a/askbot/setup_templates/settings.py.mustache b/askbot/setup_templates/settings.py.mustache
index e39231f0..3287fb18 100644
--- a/askbot/setup_templates/settings.py.mustache
+++ b/askbot/setup_templates/settings.py.mustache
@@ -182,7 +182,7 @@ CACHE_TIMEOUT = 6000
CACHE_PREFIX = 'askbot' #make this unique
CACHE_MIDDLEWARE_ANONYMOUS_ONLY = True
#If you use memcache you may want to uncomment the following line to enable memcached based sessions
-#SESSION_ENGINE = 'django.contrib.sessions.backends.cache_db'
+#SESSION_ENGINE = 'django.contrib.sessions.backends.cached_db'
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',