Hi all,
I have a problem using the upload method from CGI when the information is sent from ajax. (see code below)
I am getting an undefined filehandle
Perl error message:
I don't have problems retrieving the parameters from the ajax and creating the folder and the file (an empty one)(so permissions are ok).Use of uninitialized value in <HANDLE>
The problem is I cannot read from the filehandle.
So, if I add contentType in ajax:
I am not getting into the CGI and I am getting this error from the server:Code:contentType: "multipart/form-data",
Any suggestions how to solve this.Malformed multipart POST: data truncated
Thanks for your time and help!
html form
AJAXHTML Code:<link rel="stylesheet" href="jquery.jgrowl.css" type="text/css"/> <!-- jQuery Library --> <script type="text/javascript" language="javascript" src="jquery-1.2.6.js"></script> <script type="text/javascript" language="javascript" src="jquery.jgrowl.js"></script> <script type="text/javascript" language="javascript" src="test_ajax.js"></script> <input type=file id=test> <div id=output></div>
CGI/perlCode:$(document).ready(function () { $("#test").change(function(){ alert($(this).val()); var info = $.trim($(this).val()); $.ajax({ type: "POST", url: "/cgi-bin/upload_and_check.cgi", data: "filename="+info+"&session_id=abc", success: function(msg){ alert("This is the message: " + msg); $("#output").html(msg); $.jGrowl(msg, { sticky: true }); } }); }); });
Code:#!/usr/bin/perl use warnings; use strict; use CGI; my $form = new CGI; print $form->header; #Print HTML header my $web_home = "$ENV{DOCUMENT_ROOT}/ajax"; #Getting parametres from form my $session_id = $form->param("session_id"); my $filename = $form->param("filename"); #Create temp dir if doesn't exist yet umask 0000; if ( !-e "$web_home/tmp/$session_id" ) { mkdir "$web_home/tmp/$session_id", 0777 or die "Problems creating temporary dir '$web_home/tmp/$session_id': $!\n"; } #the upload() method to grab the file handle my $UPLOAD_FH = $form->upload("filename"); my $newfilename = $session_id; open my $NEWFILE_FH, "+>", "$web_home/tmp/$session_id/$newfilename.txt" or die "Problems creating file '$newfilename': $!"; while ( <$UPLOAD_FH> ) { print $NEWFILE_FH; } close $NEWFILE_FH or die "I cannot close filehandle: $!"; exit;


Reply With Quote
Finilly, I found a solution. Here, I am posting a really simple example using ajax and cgi/perl (server site) to upload files. No reload and no submit button.


Bookmarks