in reply to Re^3: Perl/CGI Uploading file to the server using a upload hook is failing intermittently
in thread Perl/CGI Uploading file to the server using a upload hook is failing intermittently

The answer was simple, it was a totally my bad error:

I left method="post" enctype="multipart/form-data" out of my form declaration in the HTML page.

Once I did some debugging I realized that

my $fileHandle = $q->upload('filename');

returned NULL, with no error.

  • Comment on Re^4: Perl/CGI Uploading file to the server using a upload hook is failing intermittently
  • Download Code