Hi to everyone!
Have you also tried to send headers like hell to prevent IE from caching sites?
my actual headers looked like this:
header("Pragma: ");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT"); // always modified
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Pragma: no-cache"); // HTTP/1.0
But now, I may have found an other solution:
echo "<!-- God save Microsoft - it keeps us thinking and praying! -->";
@header("Pragma: no-cache");
This causes normaly an Error "header already sent" - but not with the @!
And all caching problems are gone...
Are there still any known problems with this method?
Thanks for your ideas
Toni