Re: Django sessions issue

2010-06-07 Thread aa56280
> You better show some code now... My urls.py has the following entry: (r'^accounts/logout/$', 'django.contrib.auth.views.logout', {'next_page' : '/'}) -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-

Re: Django sessions issue

2010-06-04 Thread Tom Evans
On Fri, Jun 4, 2010 at 8:45 PM, aa56280 wrote: >> How are you logging out? Are you sure you are calling >> django.contrib.auth.logout() ? > > Yup, I'm calling django.contrib.auth.views.logout() > You better show some code now... Cheers Tom -- You received this message because you are subscrib

Re: Django sessions issue

2010-06-04 Thread aa56280
> How are you logging out? Are you sure you are calling > django.contrib.auth.logout() ? Yup, I'm calling django.contrib.auth.views.logout() -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googl

Re: Django sessions issue

2010-06-04 Thread Tom Evans
On Thu, Jun 3, 2010 at 9:06 PM, aa56280 wrote: > Django's docs say: "When a user logs in, Django adds a row to the > django_session database table. Django updates this row each time the > session data changes. If the user logs out manually, Django deletes > the row. But if the user does not log ou

Django sessions issue

2010-06-03 Thread aa56280
Django's docs say: "When a user logs in, Django adds a row to the django_session database table. Django updates this row each time the session data changes. If the user logs out manually, Django deletes the row. But if the user does not log out, the row never gets deleted." I'm logging out of my a