I am running the python development server locally, for example:
python .\manage.py runserver
This works fine in Firefox / Chrome / Safari, but when I try to use Internet Explorere (9, 8, 7), the server will not interact with the browser - actions such as logging in will be permanent and will ultimately fail.
In fact, everything that is not a simple static template (sometimes not even that) will not load in IE (but it loads fine in FF / Chrome)
My environment:
- Windows 7 (x64)
- Aptana
- Python v2.7.2
- django v1.3
Update: this does not happen when I explicitly determine the server IP address, for example:
python .\manage.py runserver 192.168.1.123:8000
Any ideas? offers?
Goro source share