PDA

View Full Version : [django] error CSRF token missing or incorrect on POST reciever



Crazedpsyc
January 3rd, 2011, 06:59 PM
I tried to make a quick search box for my site-in-progress and expected it to be as simple as keeping the database updated. Unfortunately I ran into the following error as soon as I POSTed a query:

Forbidden (403)

CSRF verification failed. Request aborted.

Help

Reason given for failure:
CSRF token missing or incorrect. In general, this can occur when there is a genuine Cross Site Request Forgery, or when Django's CSRF mechanism (http://docs.djangoproject.com/en/dev/ref/contrib/csrf/#ref-contrib-csrf) has not been used correctly. For POST forms, you need to ensure:


The view function uses RequestContext (http://docs.djangoproject.com/en/dev/ref/templates/api/#subclassing-context-requestcontext) for the template, instead of Context.
In the template, there is a {% csrf_token %} template tag inside each POST form that targets an internal URL.
If you are not using CsrfViewMiddleware, then you must use csrf_protect on any views that use the csrf_token template tag, as well as those that accept the POST data.

You're seeing the help section of this page because you have DEBUG = True in your Django settings file. Change that to False, and only the initial error message will be displayed.
You can customize this page using the CSRF_FAILURE_VIEW setting.


I tried adding "{% csrf_token %}" to my template, but still got the same error. I don't really know what the rest of the suggestions mean:confused:, so any translation help would be appreciated

Crazedpsyc
January 4th, 2011, 09:07 PM
KerBUmp

Crazedpsyc
January 6th, 2011, 12:27 AM
and a bump! No one knows? any more info needed?

Crazedpsyc
January 9th, 2011, 09:32 PM
bump

Crazedpsyc
January 11th, 2011, 04:47 PM
bump

Crazedpsyc
January 15th, 2011, 06:43 PM
bump

Crazedpsyc
January 15th, 2011, 06:44 PM
bump

llanitedave
January 15th, 2011, 10:58 PM
Have you tried the django-users google group?

http://groups.google.com/group/django-users

Crazedpsyc
January 17th, 2011, 06:08 PM
Thanks, I'll repost there ;)