Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
docs:programming:php:pdf_http_headers [2008/08/03 00:25] – external edit 127.0.0.1 | docs: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(" | + | header(" |
- | header(" | + | header(" |
header(" | header(" | ||
Line 22: | Line 22: | ||
header(" | header(" | ||
</ | </ | ||
+ | |||
+ | ===== 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" | ||
+ | - make sure to uncheck Tools -> Internet Options -> Advanced -> Do not save encrypted pages to disk | ||
+ | - use the following (notice it is before session_start()):< | ||
+ | if(strpos($_SERVER[' | ||
+ | session_cache_limiter(" | ||
+ | } | ||
+ | session_start(); | ||
+ | </ | ||
+ | |||
+ | ===== See Also ===== | ||
+ | * [[docs: | ||
+ | |||
+ | ===== External Links ===== | ||
+ | * [[http:// | ||
+ |