I need to have web based ftp capabilities for a site I am working on.  My 
development server is running RedHat 7.1 and php-4.0.4, and I did compile 
php with the --enable-ftp switch.

After reading the docs at php.net, I found a "canned" script 
(http://www.php.net/manual/en/ref.ftp.php) that I thought I would try so 
as to give me a better idea on what was involved.

When running the script, I can connect to the ftp server, list the 
contents of the directory, and disconnect, but cannot upload anything.  
When I try, I get the following error:

Warning: error opening /home/windon/somefile in 
/var/www/html/ftp.php on line 43

line 43 reads:

$upload = ftp_put($conn_id, "$destination_file", "$source_file", 
FTP_BINARY);

In $destination_file I have just the filename, while in $source_file I 
have the full path and the filename.

Thanks,

Chesley


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to