On Tue, May 13, 2014 at 2:49 PM, hinnack <
henrik....@miadi.net> wrote:
> Hi,
>
> how can I turn off csrf completely - even in the admin interface?
>
> My base problem is, that with IE11 (and only IE11) I can not save any form
> in the admin interface. I always get:
>
> CSRF verification failed. Request aborted
That message comes from django.views.csrf.csrf_failure. This view is
only called from the csrf middleware..
>
>
> I have no csrf middleware set. What else must be done?
>
... which suggests this is not true - re-check that you have actually
removed it, go to a django shell, type these commands:
from django.conf import settings
settings.MIDDLEWARE_CLASSES
is CsrfViewMiddleware listed there? If it isn't, have you tried
turning it off and then on again?
Cheers
Tom