Changes between Version 1 and Version 2 of Ticket #28488, comment 3
- Timestamp:
- Sep 1, 2017, 7:13:41 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28488, comment 3
v1 v2 1 Before Django 1.11, I was using Django 1.8 and everything was working perfectly.1 Before Django 1.11, I was using Django 1.8 and everything was working perfectly. 2 2 3 In order to use Django 1.11, I did all the changes mentioned on https://docs.djangoproject.com/en/1.11/releases/1.11/3 In order to use Django 1.11, I did all the changes mentioned on https://docs.djangoproject.com/en/1.11/releases/1.11/ 4 4 5 5 What I've done now was add `settings.CSRF_FAILURE_VIEW = 'courses.views.csrf_failure'` with `DEBUG=False` … … 13 13 The traceback is the following: 14 14 15 16 15 {{{ 17 16 File "/opt/python/run/venv/lib64/python2.7/site-packages/django/core/handlers/exception.py" in inner 18 17 41. response = get_response(request) … … 32 31 File "/opt/python/current/app/courses/views/__init__.py" in csrf_failure 33 32 49. raise Exception('Lets see where this shit happens: ' + str(locals())) 33 }}}