Posts
 
Reputation
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
~3K People Reached
Favorite Forums
Favorite Tags
ssh x 1
php x 1

1 Posted Topic

Member Avatar for asifkamalzahid

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]

Member Avatar for hoanhuynh
0
464

The End.