View Single Post
Join Date: Sep 2008
Posts: 13
Reputation: hirts_gal is an unknown quantity at this point 
Solved Threads: 0
hirts_gal hirts_gal is offline Offline
Newbie Poster

Re: Error in uploading file via ftp server

 
0
  #3
Sep 22nd, 2008
i did as you said but it still does not work. here is the cording that i add in upload.php file before close the ftp connection:-

// upload the file
//$upload = ftp_put($conn_id,$destination_file,$source_file,FTP_ASCII );
if (move_uploaded_file($source_file, "/home/admin")) {
print "Received {$_FILES['file']['name']} - its size is {$_FILES['file']['size']}";
} else {
print "Upload failed!";
}
Reply With Quote