From: Michael M. <mik...@gw...> - 2005-05-27 13:47:09
|
We have experienced this problem in other applications. I think the problem is discussed in this Microsoft posting: http://support.microsoft.com/default.aspx?scid=kb;en-us;812935 To solve the problem, we use the following headers to deliver files to users: header("Content-Type: $mime"); header("Cache-Control: post-check=999, pre-check=999"); header("Pragma: cache"); header("Content-Disposition: attachment; filename={$name}"); header("Content-Length: ".strlen($data)); .. where $mime is the mime type of the file, $name is the file's name, and $data is the content of the file. Hope this helps. Mike Mattmiller On May 26, 2005, at 4:03 PM, Neil Patterson wrote: > Hello, > We have installed 1.7.2 and implemented SSL use. All works well > except > the download of a CSV file of responses. From Internet Explorer 6.0 I > receive the messages: > > "Internet Explorer cannot download ...header& ..." > > "Internet Explorer was not able to open this Internet site. The > requested > site is either unavailable or cannot be found. Please try again later." > > Has anyone else encountered this response and discovered a resolution? > > .../neil patterson > > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by Yahoo. > Introducing Yahoo! Search Developer Network - Create apps using Yahoo! > Search APIs Find out how you can build Yahoo! directly into your own > Applications - visit > http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005 > _______________________________________________ > phpESP-general mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/phpesp-general |