I had a client that could not log in to EE admin site.
The solutions was the following from the IT department at the client’s office:
The problem was that the dynamically created page did not have a tag specifying not to cache it, so the proxy server at the ofice was caching it and breaking its functionality. I have excluded the site from caching at the office, but you may experience problems at other sites with proxy servers, and even some ISPs that do transparent caching. I would suggest that you may wish to have the web developer add the tags that prevent caching to prevent similar issues at other sites.
I thought this may be helpful to others. I’ve tried to accomplish this with some meta tags in my headers of my templates but as for the admin section I may have to hack in and put following:
<meta http-equiv=“Expires” content=“0”>
<meta http-equiv=“Pragma” content=“no-cache”>
<meta http-equiv=“cache-control” content=“no-cache”>
Any idea if this will solve the problem?