I've been banging my head on this wall for almost 4 hours now; anyway, here's the problem :
I have a perl script on my website (which has SSL on it) which creates a dynamic PDF file and displays the OPEN/SAVE dialog box (when viewed in IE 6),so that the user can either view or download the PDF file .
now when i execute the script by pointing IE 6 to , for example, http://testsite.com/script.cgi, the script runs fine and displays the OPEN/SAVE dialog box, and i'm able to open the PDF page directly in the browser or, if i choose to, save the PDF file to my hard disk...
BUT, if go the same URL,except now i add the 's' to 'http' , like 'https://testsite.com/script.cgi', the browser tries to download the page instead of displaying the OPEN/SAVE browser dialog box...
here are the headers i'm printing out :
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;
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)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.