Django CSRF Framework having many failures I seem to get CSRF errors on all public pages that do a post and do not have the special key. My workaround was to use the disable_csrf decorator on all public views.
Django CSRF framework cannot be disabled and is breaking my site Yes! I'm going to start using a stable version of Django. I've been running a production money generating site off the dev. branch from before version 1.0 was released. Django is an amazing project, but this is the first time I've gotten burned by using the trunk.
Oct 30
comment
Django CSRF framework cannot be disabled and is breaking my site There is a view decorator to use: @csrf_exempt, if you put this decorator the CSRF framework will ignore its checking for that request. I'm stil pissed at how this CSRF trap was sprung, it is baked into the auth framework so you can't disable it if you use auth for sign-in.
Django CSRF framework cannot be disabled and is breaking my site Thanks for the info, you didn't tell me how to disable CSRF completely, I have a production site which has stopped working for paying customers because I was blindsided by this "new" way of doing things that is not backwards compatible. But this is the issue that is causing the problem, I'm working on quickly updating to the new/legacy way.
What to do if Django’s trunks own unit tests fail? I think it may be due to my dev setup. I'm using OSX and MySQL, the majority of the failures seem to be database related of renaming tables and such.