ultranerds has asked for the wisdom of the Perl Monks concerning the following question:

Hi guys,

I've use this script on several other sites, without issues:

http://blueimp.github.io/jQuery-File-Upload/

Normally, I just use a basic CGI.pm object, and can call the filename etc using:

print "Action is: " . $IN->param('action');


The annoying part, is that I can see the value perfectly in Firebug:

-----------------------------21562738631778 Content-Disposition: form-data; name="action" ajax_image_upload 
-----------------------------21562738631778 Content-Disposition: form-data; name="room" 1 
-----------------------------21562738631778 Content-Disposition: form-data; name="fileupload"; filename="paypal-secure.png" Content-Type: image/png ‰PNG .. rest of image code here :)


However, when I try and print it out - I get nothing!

UPDATE: Not sure what happened - could have been when the host updated libssh2-devel ... as it works now!

TIA

Andy
  • Comment on File upload via AJAX - can't get the params!