in reply to Re^9: File Upload On Windows 8 and Perl
in thread File Upload On Windows 8 and Perl

Okay - here is the return:

$upload_dir = [c:\users\scott\web\tec\images-user] $filename = [Me_1.jpg] $upload_dir/$filename = [c:\users\scott\web\tec\images-user/Me_1.jpg]

All that looks right - and again i see the file being created - but its EMPTY - it least now i know im not CRAZY CRAZY!

And thank you EVERYONE for taking time to be aggravated like I am! :)

Replies are listed 'Best First'.
Re^11: File Upload On Windows 8 and Perl
by poj (Abbot) on Jul 04, 2015 at 18:40 UTC
    Try uploading a small text file to this test script
    #!perl use strict; use CGI qw( :standard); use CGI::Carp qw(fatalsToBrowser); my $q = CGI->new; print $q->header(),$q->start_html(); for my $p ($q->param){ print "$p = ".$q->param($p)."<br/>" } print "<pre>"; my $upload_filehandle = $q->upload("photo"); while ( <$upload_filehandle> ) { print $_; } print "</pre>"; print $q->end_html;
    poj