Results 1 to 9 of 9

Thread: [django] error CSRF token missing or incorrect on POST reciever

  1. #1
    Join Date
    Mar 2010
    Location
    /var/local
    Beans
    401
    Distro
    Ubuntu Development Release

    [django] error CSRF token missing or incorrect on POST reciever

    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 has not been used correctly. For POST forms, you need to ensure:

    • The view function uses 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, so any translation help would be appreciated

  2. #2
    Join Date
    Mar 2010
    Location
    /var/local
    Beans
    401
    Distro
    Ubuntu Development Release

    Re: [django] error CSRF token missing or incorrect on POST reciever

    KerBUmp

  3. #3
    Join Date
    Mar 2010
    Location
    /var/local
    Beans
    401
    Distro
    Ubuntu Development Release

    Re: [django] error CSRF token missing or incorrect on POST reciever

    and a bump! No one knows? any more info needed?

  4. #4
    Join Date
    Mar 2010
    Location
    /var/local
    Beans
    401
    Distro
    Ubuntu Development Release

    Re: [django] error CSRF token missing or incorrect on POST reciever

    bump

  5. #5
    Join Date
    Mar 2010
    Location
    /var/local
    Beans
    401
    Distro
    Ubuntu Development Release

    Re: [django] error CSRF token missing or incorrect on POST reciever

    bump

  6. #6
    Join Date
    Mar 2010
    Location
    /var/local
    Beans
    401
    Distro
    Ubuntu Development Release

    Re: [django] error CSRF token missing or incorrect on POST reciever

    bump

  7. #7
    Join Date
    Mar 2010
    Location
    /var/local
    Beans
    401
    Distro
    Ubuntu Development Release

    Re: [django] error CSRF token missing or incorrect on POST reciever

    bump

  8. #8
    Join Date
    Sep 2005
    Location
    Rural Nevada, USA
    Beans
    314
    Distro
    Ubuntu 17.04 Zesty Zapus

    Re: [django] error CSRF token missing or incorrect on POST reciever

    Have you tried the django-users google group?

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

  9. #9
    Join Date
    Mar 2010
    Location
    /var/local
    Beans
    401
    Distro
    Ubuntu Development Release

    Re: [django] error CSRF token missing or incorrect on POST reciever

    Thanks, I'll repost there

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •