On Tue, May 13, 2014 at 2:49 PM, hinnack <[email protected]> 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 -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFHbX1Ldq%2BSJnCQ389iC53w9nk1zodR02QL9%3DC8c%3DWeP%2Bhtszw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

