why following jquery code doesn\'t work when used with django while it works if loaded like static page?
Whenever I try to upload a file using SWFUpload on Django 1.2, I get an HTTP 403 error. I\'m sure this is a CSRF error because when I use the @csrf_exempt decorator in works fine.
Django 1.2 is consistently giving me this CSRF verification error when I perform a POST form. I \"think\" I\'ve done all the things asked in the Django 1.2 docs, namely,
I have a simple form I want users to be able to log into; here is the template code with the CSRF tag in it:
I have a GWT web app working with Django server-side. I recently upgraded Django to 1.2, and am not able to get HTTP posts to work from my GWT app. I am getting this error:
I am running Django 1.2.2 and I get the following error when I try to log in to the Django adm开发者_开发问答in:
Are forms that use the POST method required to have CSRF protection?I\'m following a book and the code examples throw 403 errors.I did some searching and it seems as if I need to enable CSRF in all my
I\'m working with an iPhone developer who does not have any Django experience, and I am relatively new to Django. I\'ve built an existing Django app with a web interface that allows a user to log in a
I have a django site running on 1.2.1, and once in a while my users lose a lot of work because the csrf_token cookie does not exist and the page errors out with a 403 er开发者_StackOverflow中文版ror o
within my django app I am storing strings of html in the db that will then be displayed on the users\' home pages as \"messages\". Some of these messages contain forms, but not being written in the te