faqts : Computers : Programming : Languages : PHP : Installation and Setup : Web Servers : Apache

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

8 of 10 people (80%) answered Yes
Recently 8 of 10 people (80%) answered Yes

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.