Django / IE8 Interface Interface

Dear Django experts and users:

I use the Django admin interface for some data editing tasks. I use it on Windows Server 2008 and using django-mssql to connect to SQL Server. Python 2.6.2 Django 1.1.0 final 0

As with regular w / Django, it was pretty easy to configure and works fine in Firefox, but with IE8 I periodically get the puzzling “Internet Explorer cannot display this web page” when I save a post.

The log looks, as a rule, when saving a POST request, which returns the status 302, and then GET returns a fine 200. This is on Firefox. In IE8, it seems like POST works, but GET does not.

So what is going on with me. Any help with this would be greatly appreciated. Thank.

+2
source share
2 answers

I suspect the error is due to IE8's failure to properly handle the redirect.

302 POST pushes the browser to 200 GET, but if the browser never processes 302, then Django (or the server) will not register 200 GET because the browser never opened the page (the server can only register that ergo browser does not make the call) .

Django - (IIS FastCGI, Apache - ), , , . Vista x64 Ultimate IE8 Beta 2, , , - .

0

, , . , IE8 cookie 20 .

setup.py Django SESSION_COOKIE_AGE, 10 . 20 , IE8 .

0

All Articles