I've spend a few hours in frustration, trying to disable the CSRF which Django now tries to force on me, to no avail. Had anyone else tried this with more success? I'm fine with anything that works, except for a source patch (but monkeypatches are okay).
+2
A:
I haven't actually tried to disable it (never had the need), but I imagine it's just a matter of removing the CSRF middleware(s) from the MIDDLEWARE_CLASSES setting in your settings.py.
Epcylon
2009-11-23 21:08:46
I believe it is now enabled by default on the contrib apps.
Harold
2009-11-24 02:03:44
No, it just flat out ignores what's in MIDDLEWARE_CLASSES of my settings.py
RommeDeSerieux
2009-11-24 15:13:19
A:
Try commenting out the csrf middleware and restarting the server. A lot of the time changes like that wont be loaded until afterward.
Josh Sandlin
2009-12-07 04:42:44