How can I handle HTTP file uploads? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:26:02Z http://stackoverflow.com/feeds/question/162677 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/162677/how-can-i-handle-http-file-uploads 3 How can I handle HTTP file uploads? Jon Drnek 2008-10-02T14:41:38Z 2008-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#162724 8 Answer by kender for How can I handle HTTP file uploads? kender 2008-10-02T14:49:09Z 2008-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-&gt;param("photo"); my $email_address = $query-&gt;param("email_address"); if ( !$filename ) { print $query-&gt;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-&gt;upload("photo"); open ( UPLOADFILE, "&gt;$upload_dir/$filename" ) or die "$!"; binmode UPLOADFILE; while ( &lt;$upload_filehandle&gt; ) { print UPLOADFILE; } close UPLOADFILE; print $query-&gt;header ( ); print &lt;&lt;END_HTML; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; &lt;title&gt;Thanks!&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt;Thanks for uploading your photo!&lt;/p&gt; &lt;/body&gt; &lt;/html&gt; END_HTML </code></pre> http://stackoverflow.com/questions/162677/how-can-i-handle-http-file-uploads/162740#162740 5 Answer by Leon Timmermans for How can I handle HTTP file uploads? Leon Timmermans 2008-10-02T14:50:40Z 2008-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#162751 8 Answer by Glomek for How can I handle HTTP file uploads? Glomek 2008-10-02T14:52:25Z 2008-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-&gt;upload('upload_field'); while(&lt;$fh&gt;) { print SAVE_FILE $_; } </code></pre> http://stackoverflow.com/questions/162677/how-can-i-handle-http-file-uploads/162895#162895 4 Answer by runrig for How can I handle HTTP file uploads? runrig 2008-10-02T15:12:35Z 2008-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>