Entry
Why does download from a PHP+Apache+mod_ssl host not work using Internet Explorer
Apr 2nd, 2003 15:14
Christian Maegaard,
IE does not accept the "pragma: no-cache" in the header of a file
transfer when running SSL (for IE versions < 6.0 other problems exist in
addition). Therefore, if serving a file from a php script you need to
change the php.ini file:
session.cache_limiter = none
The default is 'nocache' and will result in download errors.
Netscape and Mozilla will work with the default setting.