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 [2009/01/06 15:07] – billh | docs:programming:php:pdf_http_headers [2009/11/20 20:42] (current) – billh | ||
---|---|---|---|
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:// | ||
+ |