Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am generating the images and want browser to cache them forever, but instead browser never cache them at all. This is my php code


header('Content-type:'.$file->content_type);
header('Expires: Thu, 15 Apr '.(date('Y')+10).' 20:00:00 GMT');
header('Content-Disposition: attachment; filename="'.$file->file_name.'"');
echo(file_get_contents($model_files->files_path.$file->md5.$model_files->seprator.$file->file_name));

and these are the response headers which i keep getting in browser.

Date:            Thu, 02 Jun 2011 12:56:56 GMT
Server:          Apache mod_fcgid/2.3.6 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
X-Powered-By     PHP/5.2.15
Cache-Control    no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma           no-cache
Expires          Thu, 15 Apr 2021 20:00:00 GMT
Content-Length   321823
Keep-Alive       timeout=5, max=100
Connection       Keep-Alive
Content-Type     image/png

I am not setting Date, Cache-Control and Pragma but keep getting them in response.

I know i can overwrite them but honestly i don't exactly know which values to set.

share|improve this question

2 Answers

Have a look at session_cache_limiter.

share|improve this answer
+1 This is a likely cause for the caching headers, if you use session_start on this page. If you don't need the session, simply remove session_start. If you don't use it, mention it in your question and you'll need to hunt down other causes of these headers. – Mel Jun 2 '11 at 13:34

You can use:

header( 'Cache-Control: max-age=37739520, public' );

You could try to overwrite Pragma too but I think these day browsers just ignore Pragma if Cache-Control is isset.

header( 'Pragma: public' );
share|improve this answer
Thanks and let me try please – Imran Naqvi Jun 2 '11 at 13:19
sorry did not worked – Imran Naqvi Jun 3 '11 at 11:30

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.