How can I handle HTTP file uploads? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T02:26:02Zhttp://stackoverflow.com/feeds/question/162677http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/162677/how-can-i-handle-http-file-uploads3How can I handle HTTP file uploads?Jon Drnek2008-10-02T14:41:38Z2008-12-03T04:05:08Z
<p>How would I write a Perl CGI script that receives a file via a HTTP post and saves that to the file system?</p>
http://stackoverflow.com/questions/162677/how-can-i-handle-http-file-uploads/162724#1627248Answer by kender for How can I handle HTTP file uploads?kender2008-10-02T14:49:09Z2008-10-02T14:49:09Z<p>Just a note: however you will write it, <strong>don't</strong> save it in a place accessible from your web-server.</p>
<p>And now to the point: below is a script which I was using for some time for photo-uploading. It might need some tweaking, but should show you the way.</p>
<p>As the image isnt uploaded to web-accesible directory, we then have separate process checking it, resizing, putting a watermark and placing it where it can be accessed.</p>
<pre><code> #!/usr/bin/perl -wT
use strict;
use CGI;
use CGI::Carp qw ( fatalsToBrowser );
use File::Basename;
$CGI::POST_MAX = 1024 * 5000;
my $safe_filename_characters = "a-zA-Z0-9_.-";
my $upload_dir = "/home/www/upload";
my $query = new CGI;
my $filename = $query->param("photo");
my $email_address = $query->param("email_address");
if ( !$filename )
{
print $query->header ( );
print "There was a problem uploading your photo (try a smaller file).";
exit;
}
my ( $name, $path, $extension ) = fileparse ( $filename, '\..*' );
$filename = $name . $extension;
$filename =~ tr/ /_/;
$filename =~ s/[^$safe_filename_characters]//g;
if ( $filename =~ /^([$safe_filename_characters]+)$/ )
{
$filename = $1;
}
else
{
die "Filename contains invalid characters";
}
my $upload_filehandle = $query->upload("photo");
open ( UPLOADFILE, ">$upload_dir/$filename" ) or die "$!";
binmode UPLOADFILE;
while ( <$upload_filehandle> )
{
print UPLOADFILE;
}
close UPLOADFILE;
print $query->header ( );
print <<END_HTML;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Thanks!</title>
</head>
<body>
<p>Thanks for uploading your photo!</p>
</body>
</html>
END_HTML
</code></pre>
http://stackoverflow.com/questions/162677/how-can-i-handle-http-file-uploads/162740#1627405Answer by Leon Timmermans for How can I handle HTTP file uploads?Leon Timmermans2008-10-02T14:50:40Z2008-10-08T06:59:39Z<p>See <a href="http://search.cpan.org/~lds/CGI.pm/CGI.pm#CREATING_A_FILE_UPLOAD_FIELD" rel="nofollow">the CGI.pm documentation for file uploads</a>.</p>
http://stackoverflow.com/questions/162677/how-can-i-handle-http-file-uploads/162751#1627518Answer by Glomek for How can I handle HTTP file uploads?Glomek2008-10-02T14:52:25Z2008-10-08T06:58:53Z<p>Use the <a href="http://search.cpan.org/~lds/CGI.pm-3.42/CGI.pm#CREATING_A_FILE_UPLOAD_FIELD" rel="nofollow">CGI module</a>.</p>
<pre><code>my $fh = $query->upload('upload_field');
while(<$fh>) {
print SAVE_FILE $_;
}
</code></pre>
http://stackoverflow.com/questions/162677/how-can-i-handle-http-file-uploads/162895#1628954Answer by runrig for How can I handle HTTP file uploads?runrig2008-10-02T15:12:35Z2008-10-02T15:12:35Z<p>I'd start by using <a href="http://search.cpan.org/dist/CGI" rel="nofollow">CGI</a> and reading <a href="http://search.cpan.org/~lds/CGI.pm-3.42/CGI.pm#CREATING_A_FILE_UPLOAD_FIELD" rel="nofollow">CREATING A FILE UPLOAD FIELD</a>, and using <a href="http://perldoc.perl.org/functions/open.html" rel="nofollow">open</a> to create a file and <a href="http://perldoc.perl.org/functions/print.html" rel="nofollow">print</a> to write to it. (and then <a href="http://perldoc.perl.org/functions/close.html" rel="nofollow">close</a> to close it).</p>