lilichic
11-30-2007, 08:30 AM
Hi, has anyone tried to use ftp_connect in php scripts?
I have a script which works fine on other servers, but, doesn't seem to connect on bluehost???
below is the script:
$ftp_server = "ftpserver"; //these have been changed
$ftp_user = "myusername"; //these have been changed
$ftp_pass = "mypassword"; //these have been changed
// set up a connection or die
$conn_id = ftp_connect($ftp_server) or die("Couldn't connect to $ftp_server");
// try to login
if (@ftp_login($conn_id, $ftp_user, $ftp_pass)) {
echo "Connected as $ftp_user@$ftp_server\n";
} else {
echo "Couldn't connect as $ftp_user\n";
}
// close the connection
ftp_close($conn_id);
the actual output says:
"Couldn't connect to ftpserver (not the real name)"
Any ideas?
Best wishes
lilichic
I have a script which works fine on other servers, but, doesn't seem to connect on bluehost???
below is the script:
$ftp_server = "ftpserver"; //these have been changed
$ftp_user = "myusername"; //these have been changed
$ftp_pass = "mypassword"; //these have been changed
// set up a connection or die
$conn_id = ftp_connect($ftp_server) or die("Couldn't connect to $ftp_server");
// try to login
if (@ftp_login($conn_id, $ftp_user, $ftp_pass)) {
echo "Connected as $ftp_user@$ftp_server\n";
} else {
echo "Couldn't connect as $ftp_user\n";
}
// close the connection
ftp_close($conn_id);
the actual output says:
"Couldn't connect to ftpserver (not the real name)"
Any ideas?
Best wishes
lilichic