docs:programming:php:pdf_http_headers

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
docs:programming:php:pdf_http_headers [2008/05/27 10:01] – created billhdocs:programming:php:pdf_http_headers [2009/11/20 20:42] (current) billh
Line 14: Line 14:
 // or update the output by another method // or update the output by another method
 $time = time(); $time = time();
-header("Expires: " . gmdate('D, d M Y H:i:s', time() + 6) . " GMT"); +header("Expires: " . gmdate('D, d M Y H:i:s', $time + 6) . " GMT"); 
-header("Last-Modified: " . gmdate('D, d M Y H:i:s', time()) . " GMT");+header("Last-Modified: " . gmdate('D, d M Y H:i:s', $time) . " GMT");
   
 header("Content-Type: application/pdf"); header("Content-Type: application/pdf");
Line 22: Line 22:
 header("Content-Transfer-Encoding: binary"); header("Content-Transfer-Encoding: binary");
 </code> </code>
 +
 +===== Making IE Accept File Downloads =====
 +Over SSL (https:), you may get a message in IE of "The file could not be written to the cache" This can be resolved by the following:
 +  - make sure to uncheck Tools -> Internet Options -> Advanced -> Do not save encrypted pages to disk
 +  - use the following (notice it is before session_start()):<code php>
 +if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE')) {
 +    session_cache_limiter("public");
 +}
 +session_start();
 +</code>
 +
 +===== See Also =====
 +  * [[docs:browsers:cache_issues]]
 +
 +===== External Links =====
 +  * [[http://joseph.randomnetworks.com/archives/2004/10/01/making-ie-accept-file-downloads/|Making IE Accept File Downloads]]
 +
  • docs/programming/php/pdf_http_headers.1211904072.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)