Ie 11 Downloads Page Instead Of Opening It, Works In Chrome And Firefox
I have a Django application running on a Ubuntu, Apache server that works perfectly under Chrome and Firefox, however when I access it via Internet Explorer 11, it will not load.
Solution 1:
- Click on Tools > Internet Options or Internet Options in the gear menu.
- Click the "Advanced" tab Click "Restore Advanced Settings".
- Close Internet Explorer and re-open it.
Solution 2:
Found the problem.
In my initial 'home' view, I redirected the user to the login page incorrectly.
Originally, I had:
return render(request, "registration/login.html", {}, RequestContext(request))
Which was incorrect, and should have been:
return render(request, "registration/login.html")
This was creating an issue with the HTTP Headers, and confusing IE 11.
Post a Comment for "Ie 11 Downloads Page Instead Of Opening It, Works In Chrome And Firefox"