Gossamer Forum
Home : General : Perl Programming :

Net::FTP uploading same file, but 2 different sizes!

Quote Reply
Net::FTP uploading same file, but 2 different sizes!
I've got a really weird problem. I'm working on an upload script that will upload Links SQL's install.cgi and install.dat files onto a remote server (I'm being very careful about not letting people access this file).

The code is;

Code:
my $ftp = Net::FTP->new( $IN->param('FTP_Domain'), Debug => 0) || die "Can't login to FTP site. Reason :$!";
$ftp->login($user,$pass);
$ftp->cwd($IN->param('FTP_Path'));
my $status1 = $ftp->put ( "./lsql-" . $IN->param('lsql_version') . "/install.cgi" , "install.cgi");
my $status2 = $ftp->put ( "./lsql-" . $IN->param('lsql_version') . "/install.dat" , "install.dat");
$ftp->site("CHMOD 0666 install.dat");
$ftp->site("CHMOD 0755 install.cgi");
$ftp->quit;

For some reason, install.dat is being uploaded at 6.93Mb, even though the file on my server (which should be uploaded), is 6.77Mb.

Anyone got any ideas why this may be? Unsure

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!