am having trouble getting my .pl script to talk to the CGI.
use warnings;
require LWP::UserAgent;
use HTTP::Request::Common;
my $browser = LWP::UserAgent->new();
my $url = 'http://localhost/cgi-bin/upload.cgi';
my $res=$browser->post( $url,
[file1 => ["c:/test.txt"],
file44=> ["c:\\test.txt"]],
'Content_Type'=>'form-data');
#die "URL Error: ", $res->status_line unless $res->is_success;
print $res->content;
When it runs I get an error page saying
No files were selected for uploading.
The error was contained in an HTML response, so I believe that the CGI and
my script are talking at least this much.
The form I am working with is...
<FORM action=http://localhost/cgi-bin/upload.cgi method=post
encType=multipart/form-data><INPUT type=file name=FILE1>
<P><INPUT type=file name=FILE44>
<P><INPUT type=submit value=submit> </FORM>
Can anyone tell me what I am missing?
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.