2016-06-21 12 views
-2
$connection = ssh2_connect('sftp://xx.xx.xx.xx', 22) or die ('fail'); 
if (ssh2_auth_password($connection, 'user', 'password')) { 

    echo "Authentication Successful!\n"; 

} else { 

    die('Authentication Failed...'); 

} 


// my result is: fail ; 
+0

Warum sind Sie mit der 'sftp: //' Präfix? – Devon

+0

meine Güte, das ist es, was das nicht funktioniert hat. Danke für Ihre Hilfe –

Antwort