screamingeagle has asked for the wisdom of the Perl Monks concerning the following question:
what am i missing here ...? and why would it work on a non-secure url and not work for a secure URL (and i checked, SSL is correctly installed on the site)if ($internet_explorer) { $header_data = "file;"; } $header_data .= "filename=$filename\n"; print "Content-Type: application/pdf;filename=$filename\n"; print "Content-Disposition: $header_data"; print "Content-Length: " . length($msg) . "\n"; print $PDFdata;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: IE 6 PDF creation on secure pages
by BrowserUk (Patriarch) on Jun 28, 2002 at 02:11 UTC | |
by screamingeagle (Curate) on Jun 28, 2002 at 02:41 UTC | |
by BrowserUk (Patriarch) on Jun 28, 2002 at 02:46 UTC | |
|
Re: IE 6 PDF creation on secure pages
by grantm (Parson) on Jun 28, 2002 at 10:50 UTC |