Yardıma ihtiyacım var. FTP sunucusuna benim yerel makinede (PC) bir görüntü yüklemek için çalışıyorum. Karşılığında, aşağıdaki hata aldı:
Warning: ftp_put(c:/dhimage/DSC_0067.JPG) [function.ftp-put]: failed to open stream: No such file or directory in /home/dxxx/public_html/ftp/test.php on line 37 Cannot upload
Here's my code: strong>
// get FTP access parameters
$host = 'ftp.xxx.com';
$user = 'abcxxx';
$pass = 'xxxxx';
$local_file = 'c:/dhimage/DSC_0067.JPG';
$ftp_file = 'DSC_0067.JPG';
// open connection
$conn = ftp_connect($host) or die ("Cannot initiate connection to host");
// send access parameters
ftp_login($conn, $user, $pass) or die("Cannot login");
// perform file upload
$upload = ftp_put($conn, $ftp_file, $local_file, FTP_BINARY);
// check upload status
// display message
if (!$upload) {
echo "Cannot upload";
} else {
echo "Upload complete";
}
// close the FTP stream
ftp_close($conn);