I have this code written by another person, the code should take the params passed as a name of file, read the file and then spits the output to the browser as for downloading the file.
this is made with a password page before. anyway, here's the code:
#!/usr/bin/perl -w
$n = $ENV{'QUERY_STRING'};
@l = split(/=/, $n);
$file = $l[1];
if ($file) {
undef $/;
open (F, "secure/1/$file") or die "Cannot Open File $file\n$!\n";
binmode (F);
$f = <F>;
close (F);
print "Content-Type: application/mpg \n";
print "Content-Disposition: filename=$file\n\n";
print "$f";
}
else {
print "Content-Type: text/html\n\n";
print "Unknown file\n";
}
as you can see, it's messy, and I want to switch it to use CGI.pm, my question is; the file type isn't always application/mpg so how do I know the type of a file I've read? or is there a common header to send for all binary file types. It's working like that, but I want to make sure it doesn't crash
I won't use this code either, I'll write my own from scratch, but I just need to know the file type thing.
thanx for your help monks out there.
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.