ftp to ftp

This is a discussion on ftp to ftp within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Bonjour, I have online one ftp(ftp1) and other web update on ftp (ftp2). I need to transfert any file ...


Go Back   Usenet Forums > PHP Programming Forums > alt.comp.lang.php

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 10-20-2006
gop
 
Posts: n/a
Default ftp to ftp

Bonjour,

I have online one ftp(ftp1) and other web update on ftp (ftp2).
I need to transfert any file from ftp1 to ftp2 via php page (on serveur
ftp1).

here my code but the transfert don't work (login ftp is ok).
i dont' see what's problem.

Thanks
/******************************************/
<?

$ftp_server = 'ftp.xxxxx.com';
$ftp_user_name = 'xxxx';
$ftp_user_pass = 'xxxxx';

$source_file="\\home\\xxxx\\xxxx\\fichier\\file.ra r";
$destination_file= "\\home\\xxx\\fichier\\";

// connexion
$conn_id = ftp_connect($ftp_server);

// login and pass
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);

// Vérification de la connexion
if ((!$conn_id) || (!$login_result)) {
echo "Login FTP failled!";
echo "Logon at $ftp_server with $ftp_user_name\n";
die;
} else {
echo "Logon at $ftp_server, with $ftp_user_name\n";
}

/*
// download file
$upload = ftp_get($conn_id, "$destination_file", "$source_file",
FTP_BINARY);

// Vérification de téléchargement
if (!$upload) {
echo "download Ftp failled!\n";
} else {
echo "download is ok frome $source_file onr $ftp_server en
$destination_file\n";
}

*/

// close ftp
ftp_close($conn_id);
?>
/************************************************** **********/


Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 01:50 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0