ftp php file uploadin

Posted by Issak on Stack Overflow See other posts from Stack Overflow or by Issak
Published on 2010-04-11T08:05:11Z Indexed on 2010/04/11 8:13 UTC
Read the original article Hit count: 114

Filed under:
<?php
   ini_set('max_execution_time', '0');

   $host = '234.546.155.485';
   $usr = 'fgfgfgdf';
   $pwd = 'fghghh';

   // file to move:
   $file = 'http://vsomesite.com/file.flv';
   $ftp_path = '/public_html/video57242/test.flv';

   // connect to FTP server (port 21)
   $conn_id = ftp_connect($host, 21) or die ("Cannot connect to host");

   // send access parameters
   ftp_login($conn_id, $usr, $pwd) or die("Cannot login");

   // turn on passive mode transfers (some servers need this)
   // ftp_pasv ($conn_id, true);

   // perform file upload
   $upload = ftp_put($conn_id, $ftp_path, $local_file, FTP_ASCII);

   // check upload status:
   print (!$upload) ? 'Cannot upload' : 'Upload complete';
   ?>

upload fails when the file is remote not local. what problem?

© Stack Overflow or respective owner

Related posts about php