Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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

In reply to CGI.pm's upload gives local filename, not file itself by Wallamaster

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (5)
As of 2024-03-29 11:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found