Das Php script hier funktioniert nicht richtig. Aber warum?
Fehlermeldung:
ftp_exec() Syntax error, command unrecognized.
Danke für Hinweise
PHP-Code:
<?php
$host = "www.fsdf.de";
$name = "xxx";
$pass = "xxx";
// conect to ftpserver
$conn_id = ftp_connect($host);
$logged = @ftp_login($conn_id, $name, $pass);
$kommando = 'ls';
if ($res = ftp_exec($conn_id, $kommando)) {
echo $kommando . " wurde erfolgreich ausgeführt<br />\n";
echo nl2br($res);
} else {
echo "Konnte " . $kommando . " nicht ausführen";
}
?>
ftp_exec() Syntax error, command unrecognized.
Danke für Hinweise
Kommentar