oh people so wiser than I,
I am creating an online photo album using Image Magick's perl library for some neat additional functions. first of all I'm going to plug Image Magick's perl module. any monkey can figure it out and it has plenty of features. anyway, the problem is not with Imagick, it's with CGI.pm's upload function. here's some abridged code from both the html and the cgi script that comes next:
<form action="upload.cgi" enctype="multipart/form-data" method="POST">
<input type="file" name="file">
<input type="submit">
</form>
and then upload.cgi
#!/usr/bin/perl
use CGI;
$file = upload('file');
open(TEMP,">temp.jpg");
print TEMP $file;
close(TEMP);
the resulting temp.jpg is NOT the image I uploaded, but rather the path and filename it was uploaded from. I'm baffled as to why. I know the image is sent to the server- I can watch the 20KB tick off in my dial-up status window. I don't know what everyone else thinks, but it seems real weird to me. One would think that for security reasons the local path/filename wouldn't even be allowed to be sent to a server, but it sure gets there and it sure fills $file. Thanks in advance for any help on this one.
-Eric Steinberg
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.