LibCURL error while sending file to FTP / SSL site
I'm trying to upload a file to an FTP site which is running FTP over SSL. It looks like the script is able to login to the site, but is unable to upload a file. here's the error message:
Curl Err no:7
Curl Error msg:Uploaded unaligned file size (0 out of 325 bytes)
Here's how my script looks:
=========================================================
$uploadfile = "/tmp/testfile.txt";
$fp = fopen ($uploadfile, "r");
Bookmarks