Hi Allan,
I've run into this problem a few times over the past couple of years, and I
did find this MS KB article that helped me fix the problem:
http://support.microsoft.com/default.aspx?scid=kb;en-us;316431
For instance, I added this code to a PHP page a while ago to work around the
issue:
// Turn off all caching so IE doesn't have a problem opening the document
// in an SSL session.
header("Cache-control: no-store");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); # Past date
header("Pragma: no-store");
header("Content-Length: " . filesize($myFile));
Hope that helps,
Greg
SourceHosting.net, LLC
Ready. Set. Code.
http://www.sourcehosting.net/
-----Original Message-----
From: Allan Ditzel [mailto:aditzel@stripped]
Sent: Wednesday, October 12, 2005 10:38 AM
To: eventum-users@stripped
Subject: CSV Issue Export Error on Eventum 1.6.1 over HTTPS with self-signed
certs and IE 6
Hi,
We're using Eventum 1.6.1 on Apache 2 with mod_ssl enabled and self-signed
certs. The csv issue export functionality works fine when using Opera or
Firefox, but on IE it tells us that the url (https://foo.com/csv.php) cannot
be downloaded. I've tried having csv.php save the csv data to a temp file
and then forcing a redirection of the pop-up window through HTTP headers to
that saved file, but no redirection happens (neither through a Location: url
or <meta> redirect). I noticed in the archive of the list that some people
had experienced similar problems but didn't see if they had been solved or
not.
Does anyone have any ideas?
Thanks,
Allan