Search code examples
pythondjangohostingadmin

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 from my A2 hosting domain www.educate-malawi.com. You can access the admin page at the bottom right of the home page.

Is this a problem for my host or is it something that I can fix?

I've tried looking for answers to this problem but everything mentions Ruby on Rails - This is not a ruby on rails project.

If you need to see any of my code let me know - I can post it.


Solution

  • 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!