Hi,
I am writing a php script to upload/download a file onto/from an FTP
Server. I manage to connect to the server, login correctly, change
directory, list all the files there but fail to get or put the file.
The documentation says that ftp_get and ftp_put return TRUE or FALSE. In
my case nothing at all is returned.
Using the following code part, the $test variable is empty
// upload the file
$test = ftp_put($conn_id, $remote_file, $local_file, FTP_BINARY);
if ($test) {
echo "Successfully uploaded $local_file.\n";
} else {
echo "There was a problem while uploading $local_file.\n";
echo("TEST: ".$test."\n<br/>");
}
I don't get any warnings.
Does this indicate something I can't figure out ?
Thanks in advance
A.Varkas
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php