Esteemed Monks, I once more seek your illumination of the dark recesses of my scatty little brain.

I have a script which is to handle a 'download once' mechanism for delivering a file. Everything else is working fine, but I need to have the script deliver the file anonymously. The file is about 24mb. I have this snippet (based on CGI Programming with Perl, 2nd ed p 314):

use constant BUFFER_SIZE => 4096; my $file_directory = '/home/goldcal/www/files/'; my $buffer = ""; my $file = $file_directory . '/wlmlm401.exe'; print $cgi->header( -type => "application/exe", -expires => "-1d" +); #local *FILE; open (FILE, "<$file") or die "Cannot open file $file: $!"; binmode ( STDOUT ); binmode ( MY_FILE ); while( read( MY_FILE, $buffer, BUFFER_SIZE ) ) { print $buffer; } close FILE;
When I get to this point in my script the browser window goes blank, but I do not get the usual "Open or Save" dialogue fomr the browser. Any help greatly appreciated.

jdtoronto


In reply to Getting CGI script to send a binary file by jdtoronto

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.