Jump to content

PHP FTP - Upload Problem


kool_samule

Recommended Posts

Hi Chaps,

 

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:

// 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";

Locally, 01.pdf is 2630Kb but the upload takes for ever and never reaches the same file size on the FTP site.

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.