| 1 | initial version | |
Do your templates have {% csrf_token %} inside each <form>?
I'd add them right after the <form> opening tag.
The template tag inserts a hidden field with a token to prevent cross site scripting.
| 2 | No.2 Revision |
Do your templates have {% csrf_token %} inside each <form>?
I'd add them right after the <form> opening tag.
The template tag inserts a hidden field with a token to prevent cross site scripting.
edit maybe you have something missing in the settings.py? Sorry, somehow I assumed you've customized the skin and lost the csrf_tokens.
You'd need:
If CSRF_COOKIE_DOMAIN does not match yours, you'll see that error.
Copyright Askbot, 2010-2011. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.