> I just upgraded to the latest trunk. I get csrf cookie not set error on
> attempting to log in - both on site and in admin. I have added the middleware
> as prescribed and also added the {% csrf_token %} within the form in my login
> form. I am not using a custom view as I am using the auth login view in the
> prescribed manner. Any clues as to what is going wrong?Hi , I had the same problem... After added the middleware 'django.contrib.csrf.middleware.CsrfMiddleware' to the list of middleware classes, MIDDLEWARE_CLASSES. My Problem is resolved.. Its working Fine now... You could also refer this link.. http://docs.djangoproject.com/en/1.0/ref/contrib/csrf/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

