Hi,
i have a problem as follows:
in a secure area are downloads offered for several customers. therefore the connection is secured by SSL. if customer clicks on a download-link, he links to the php-file Downlloadlink.html. it has the following headers:
header("Content-disposition: inline; filename=\"".$file."\"");
header("Content-Type: application/pdf");
header("Content-Transfer-Encoding: binary");
header("Pragma: no-cache");
header("Expires: 0");
$file = $path."/".$file;
readfile( urldecode( $file ) );
this is working with netscape 4.78, 6.2 and opera 6.0 but not with any ie version e.g. 5.5.
with ie5.5 errormsg occurs like: site could not be downloaded. this site cannot be opened. if i work without ssl downloadlink works correct. I would be very happy if any one could help me.
dueztaban