I've got access to my FTP site through my PHP App, can create a directory, and read the contents of the directory.
I'm now trying to upload files to a directory:
Code: Select all
// Upload
// Local File
$local_file = 'C:/01.pdf';
// Remote File
$remote_file = $workingDir.$dir.'01.pdf';
// Upload File to Active Directory
$upload = ftp_put($conn, $remote_file, $local_file, FTP_ASCII);
// Check Upload Status:
print (!$upload) ? 'Cannot upload' : 'Upload complete';
print "\n";I've tried it with word docs (24Kb), the upload takes no time at all, but appears as 1Kb on the FTP site and is obviously corrupt and fails to open.
How can I make sure that the file is copied correctly to the site?
Cheers