Here's my problem:
One section of my site allows my client to edit images (move above or below one another etc.). The code is all ok there. Only, my clients often use IE, and the changes they made don't always appear. I'm pretty sure this is a cache issue... everything runs fine in firefox, but IE is giving me some trouble. Right now I have this code at the top of my script:
[CODE=php]<?
header ("Pragma: no-cache");
header ("Cache-Control: no-cache, must-revalidate, max_age=1");
header ("Expires: Sun, 16 Sept 1990 01:20:30 GMT");
?> [/CODE]
and this line before the end of the head section:
[CODE=html]<META HTTP-EQUIV="Expires" CONTENT="0" />[/CODE]
Neither seems to be working in IE. It is a rather annoying issue because my clients tend to send several emails informing me of "tech issues" when there really is no problem besides the cache... any solutions?
thanks in advance,
- tm -
One section of my site allows my client to edit images (move above or below one another etc.). The code is all ok there. Only, my clients often use IE, and the changes they made don't always appear. I'm pretty sure this is a cache issue... everything runs fine in firefox, but IE is giving me some trouble. Right now I have this code at the top of my script:
[CODE=php]<?
header ("Pragma: no-cache");
header ("Cache-Control: no-cache, must-revalidate, max_age=1");
header ("Expires: Sun, 16 Sept 1990 01:20:30 GMT");
?> [/CODE]
and this line before the end of the head section:
[CODE=html]<META HTTP-EQUIV="Expires" CONTENT="0" />[/CODE]
Neither seems to be working in IE. It is a rather annoying issue because my clients tend to send several emails informing me of "tech issues" when there really is no problem besides the cache... any solutions?
thanks in advance,
- tm -
Comment