[Django]-Internet Explorer does not talk with django dev server

1👍

Two guesses:

  1. If you’re developing on Windows and pointing your browser at localhost:8000, try 127.0.0.1:8000 instead. I’ve had that issue with IE9 before.

  2. If you’re working with a VM (I’m asking because IE7,8,9 won’t all run on the same OS) you need to point to the host machine IP, since localhost would be the local IP of the VM itself.

0👍

Try appending the following to your httpd.conf. I’ve had issues before with IE not submitting POST data.

SetEnvIf User-Agent ".*MSIE.*" ssl-unclean-shutdown
MaxKeepAliveRequests 1

Leave a comment