Django Admin - "incomplete Response Received From Application"
I've recently started a Django project - When I go to the Admin page I get an 'Incomplete Response Received from Application' message. I only get this error when viewing my project
Solution 1:
This error is produced when using a Host and a link in your Django project is either not in your urls.py file or is incorrect.
For me specifically my href linked to "www.educate-malawi.com/admin" when urls.py expected "www.educate-malawi.com/admin/"
Just an interesting error for a bad url!
Solution 2:
For anyone facing this error in Django hosted on shared hosting space can refer to this answer:
Go to terminal and type python manage.py runserver
.
You'll see the actual cause of this error. In my case, it was because I was using a python library in views.py
which I forgot to install on cpanel
.
Post a Comment for "Django Admin - "incomplete Response Received From Application""