Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I generate some images using a PHP lib.

Sometimes the browser does not load the new generated file.

How can I disable cache just for images created dynamically by me?

Note: I have to use same name for the created images over time.

share|improve this question

5 Answers

up vote 36 down vote accepted

A common and simple solution to this problem that feels like a hack but is fairly portable is to add a randomly generated query string to each request for the dynamic image.

So, for example -

<img src="image.png" />

Would become

<img src="image.png?dummy=8484744" />

Or

<img src="image.png?dummy=371662" />

From the point of view of the web-server the same file is accessed, but from the point of view of the browser no caching can be performed.

The random number generation can happen either on the server when serving the page (just make sure the page itself isn't cached...), or on the client (using JavaScript).

You will need to verify whether your web-server can cope with this trick.

share|improve this answer
19  
Instead of random numbers, use the timestamp that the data changed or a version number of the reflected data. – lhunath Apr 8 '09 at 19:00

Browser caching strategies can be controlled by HTTP headers. Remember that they are just a hint, really. Since browsers are terribly inconsistent in this (and any other) field, you'll need several headers to get the desired effect on a range of browsers.

    header("Pragma-directive: no-cache");
    header("Cache-directive: no-cache");
    header("Cache-control: no-cache");
    header("Pragma: no-cache");
    header("Expires: 0");
share|improve this answer
this will applay to the whole page.... I can't disable cache for one image only(a specific image from that page)? – dole doug Apr 8 '09 at 8:03
@dole doug: Those are HTTP headers of your IMAGE, not your PAGE... – lhunath Apr 8 '09 at 18:59
@Ihunath. It didn't work for me. I guess it doesn't apply to images.. – Thorpe Obazee Nov 29 '09 at 0:36
@Thorpe: It applies to HTTP responses. What is contained in the response is irrelevant. Whether it's image data, HTML data or whatever else. If it didn't work, you probably didn't do it right. Check the HTTP headers on your response to see if they have been correctly assigned. – lhunath Nov 29 '09 at 11:22
I wish this worked... Chrome doesn't have any problems, but Firefox 14 and IE 8 refuse to refresh the images even with the above headers being sent. This would have been so much cleaner solution than adding some arbitrary parameters to the query string. sigh – Pawel Krakowiak Sep 14 '12 at 13:08

If you need to do it dynamically in the browser using javascript, here is an example...

<img id=graph alt="" 
  src="http://www.kitco.com/images/live/gold.gif" 
  />

<script language="javascript" type="text/javascript">
    var d = new Date(); 
    document.getElementById("graph").src = 
      "http://www.kitco.com/images/live/gold.gif?ver=" + 
       d.getTime();
</script>
share|improve this answer

I've used this to solve my similar problem ... displaying an image counter (from an external provider). It did not refresh always correctly. And after a random parameter was added, all works fine :)

I've appended a date string to ensure refresh at least every minute.

sample code (PHP):

$output .= "<img src=\"http://xy.somecounter.com/?id=1234567890&".date(ymdHi)."\" alt=\"somecounter.com\" style=\"border:none;\">";

That results in a src link like:

http://xy.somecounter.com/?id=1234567890&1207241014
share|improve this answer

I know this topic is old, but it ranks very well in Google. I found out that putting this in your header works well;

<meta Http-Equiv="Cache-Control" Content="no-cache">
<meta Http-Equiv="Pragma" Content="no-cache">
<meta Http-Equiv="Expires" Content="0">
<meta Http-Equiv="Pragma-directive: no-cache">
<meta Http-Equiv="Cache-directive: no-cache">
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.