What would cause the ftp_put method to return false even though I have valid parameters?
Parameters echoed:
[FONT=courier new]
$conn_id: Resource id #9
$ftpfile: /inhouse/sendfd.txt.041206022247
$upfile: /uploadtemp/sendfd.txt.041206022247
[/FONT]
I call the method by:
[FONT=courier new]
$upload = ftp_put($conn_id, $ftpfile, $upfile, FTP_ASCII);
print '$upload '.$upload."<br>";
[/FONT]
Nothing is printed next to '$upload '
Is there a setting in the php.ini file that I need to check?
FTP support is enabled.
Thank you for reading this post.