Jump to content

ftp_raw() command not understood


markjoe

Recommended Posts

I had a BAT file reading in and ftp script to "mget" some files by ftp.

I am replacing this with a CLI PHP script to eliminate user interaction (changing date to match in file name), and make it more flexible.

Trouble: everything I try in ftp_raw() returns "command not understood".

 

$curdate3digit is returning the correct value.

 

$ftpc=ftp_connect("123.45.67.89");
$ftpl=ftp_login($ftpc, "username", "Pass");
if($ftpl){
$ftpout[]=ftp_raw($ftpc, 'lcd D:/);
$ftpout[]=ftp_raw($ftpc, 'prompt off');
$ftpout[]=ftp_raw($ftpc, 'bin');
$ftpout[]=ftp_raw($ftpc, 'cd /remote/dir/togetfrom');
$ftpout[]=ftp_raw($ftpc, "mget $curdate3digit*.sch");
}else{
echo "ftp login failed\n";
}
ftp_close($ftpc);

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.