Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.70K
1 Posted Topic
We can use phpseclib library with an example as below: [CODE] <?php include('Net/SSH2.php'); $ssh = new Net_SSH2('domain.com'); if (!$ssh->login('username', 'password')) { exit('Login Failed'); } echo $ssh->exec('ls'); ?> [/CODE] with more information here: [URL="http://4rapiddev.com/php/php-ssh-to-remote-server-and-execute-command/"]http://4rapiddev.com/php/php-ssh-to-remote-server-and-execute-command/[/URL]
The End.
hoanhuynh