Re: [PHP] Error with ftp_get()

2004-02-14 Thread Thorben
Oh. Yes. I forget the code. With an normal FTP-client i can get the file easily. Ah! I've found the error. My code was ftp_get($conn, "tmp", $file, FTP_BINARY); The var $file is a GET-var, but on my server register_globals is off. So i had to write $_GET['file']. It was so easy. On Fri, 2003-11

Re: [PHP] Error with ftp_get()

2004-02-14 Thread Adam Bregenzer
On Fri, 2003-11-14 at 07:33, Thorben wrote: > Warning: ftp_get(): 'RETR ' not understood. > > I guess 'RETR' is a message from FTPServer to PHP and PHP don't > understand it. So, can you tell me, how to avoid this? When you request (get) a file using the ftp command you send a RETR command to th

[PHP] Error with ftp_get()

2004-02-14 Thread Thorben
Hi guys. It's possible that my english sometimes isn't so good. I'm a small german boy. At the moment i am working on a WebFTP client. All the stuff like list,mkdir,rm(dir),put works. But when i use ftp_get() an error appears: Warning: ftp_get(): 'RETR ' not understood. I guess 'RETR' is a mess