
Spence32
New User
Oct 15, 2008, 5:26 AM
Post #1 of 3
(259 views)
|
|
'command not implemented' ftp put
|
Can't Post
|
|
Hi, I am using 'ftp put' to push files to a remote server, but each time an error is returned 'command not implemented.'. Anyone know what this means or how to fix it? Here is the code: foreach my $file (@putFiles) { if ($file ne '.' && $file ne '..' ) { $ftp->put($file) or print LOGFILE "$trgt_dir\\$file:".$ftp->message(); } } Thanks |