I have a website which is running in Chrome and Firefox properly but while I am running the page on IE some problems occur. The first time it loads perfect but after login while I am trying to click another page it takes too long to load the page.
Second problem is after login in IE when I tried to refresh the page the session expired and it sent the user to the login page again.
I am using in meta like this:
http-equiv="Content-Type" content="text/html; charset=utf-8"
http-equiv="Pragma" content="no-cache"
http-equiv="Expires" content="0"
NAME="robots" CONTENT="noindex,nofollow"
I am using JavaScript after the body tag.
In the page header section I wrote PHP code like this:
ob_start();
session_start();
How to solve this problem?
Change the position of these. Hope it will work