Browse Source

Small change in default cookies config

Ralfp 12 years ago
parent
commit
a7cd1e15b9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      deployment/settings.py

+ 1 - 1
deployment/settings.py

@@ -49,7 +49,7 @@ CACHES = {
 
 
 # Cookies configuration
 # Cookies configuration
 COOKIES_DOMAIN = '' # For example cookie domain for "www.mysite.com" or "forum.mysite.com" is ".mysite.com"
 COOKIES_DOMAIN = '' # For example cookie domain for "www.mysite.com" or "forum.mysite.com" is ".mysite.com"
-COOKIES_PATH = ''
+COOKIES_PATH = '/'
 COOKIES_PREFIX = '' # Allows you to avoid cookies collisions with other applications.
 COOKIES_PREFIX = '' # Allows you to avoid cookies collisions with other applications.
 COOKIES_SECURE = False # Set this to true if AND ONLY IF you are using SSL on your forum.
 COOKIES_SECURE = False # Set this to true if AND ONLY IF you are using SSL on your forum.