1👍
Two guesses:
-
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.
-
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
- [Django]-Django Postgresql syncdb error
- [Django]-Getting task_ids for all tasks created with celery chord
Source:stackexchange.com