I am doing some image manipulation on users' inputs: everytime, the image is modified, but is sent by the server with the same name (can't change it).
Putting headers such as:
header("ETag: PUB" . time());
header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()-1) . " GMT");
header("Expires: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
header("Pragma: no-cache");
header("Cache-Control: max-age=0, s-maxage=0, no-store, no-cache, must-revalidate");
BEFORE the tag works fine with IE6-7, but fail with Firefox: the image on the screen is the image cached on the user's machine.
Any idea how to implement this so it can run on firefox?
2007-09-15
21:55:15
·
3 answers
·
asked by
just "JR"
7
in
Computers & Internet
➔ Programming & Design
Gyuri: nope! (ok IE6-7, no on FF)
2007-09-15
22:07:11 ·
update #1