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.
|
|
|
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 -
Would become
Or
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. |
|||||||
|
|
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.
|
|||||||||||
|
|
If you need to do it dynamically in the browser using javascript, here is an example...
|
||||
|
|
|
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):
That results in a
|
||||
|
|
|
I know this topic is old, but it ranks very well in Google. I found out that putting this in your header works well;
|
|||
|
|