in reply to Re: Having an issue with my CGI.pm file uploads
in thread Having an issue with my CGI.pm file uploads

OK, if I add that print statement, you are correct...

It isn't getting defined.

So then, is my problem the upload function in CGI.pm? The call:

my $upload_filename = $i->param( 'JARFILE' );
successfully returns the filename, but the call:
my $upload_filehandle = $i->upload( 'JARFILE' );
is apparently the issue?

Replies are listed 'Best First'.
Re^3: Having an issue with my CGI.pm file uploads
by toolic (Bishop) on Sep 25, 2007 at 17:25 UTC
    The documentation on CGI offers some reasons why upload might return an undef value. You've already exceeded my experience with this module. Perhaps wiser monks have better advice.
Re^3: Having an issue with my CGI.pm file uploads
by Anonymous Monk on Sep 13, 2013 at 21:33 UTC
    I am having the same issue. Did you find out the problem?