Re: CSRF token is missing

2010-08-25 Thread Aspontus
Hi. I had such a problem lately and it turned out to be caused by using older template, from django 1.1, which didn't get deleted during upgrade. Hope it helps. Cheers On 25 Sie, 14:36, Jonas Geiregat wrote: > I'm using django-1.2.1 on Mac OS X. > > I'm trying out the comments framework that come

Re: CSRF token is missing

2010-08-25 Thread davidchambers
Make sure that 'django.middleware.csrf.CsrfViewMiddleware' is listed in your MIDDLEWARE_CLASSES. There's useful info about the things that need to be in place in order for Django's CSRF protection to work at http://docs.djangoproject.com/en/dev/ref/contrib/csrf/. David On Aug 26, 12:36 am, Jonas