docs:programming:php:pdf_http_headers

Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
docs:programming:php:pdf_http_headers [2009/01/06 15:07] billhdocs:programming:php:pdf_http_headers [2009/11/20 20:42] (current) billh
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.1231279644.txt.gz
  • Last modified: 2009/01/06 15:07
  • by billh