错误致命错误:在(环境:PHP版本5.6.6,Windows7和IIS7)中调用未定义的函数ssh2_connect()

时间:2015-03-22 09:23:24

标签: php windows iis-7

我无法使用ss2_connect()。我已将所有libssh2.dll和php_ssh2.dll复制到php \ ext文件夹,也未注释extension = php_ssh2.dll。

但是获得Error Fatal错误:从代码下面的第2行调用C:\ PHP \ Code \ linux.php中的未定义函数ssh2_connect()。请帮助我吧。

1 个答案:

答案 0 :(得分:0)



checklogin.php  contents ::: 

<?php

// username and password sent from form
$myusername=$_POST['myusername'];
$mypassword=$_POST['mypassword'];
$result1=$myusername.$mypassword;
$result='rsahursahu';
if($result==$result1){
//header("location:emp.php");
header("location:linux.php");
//header("location:file_execute.php");
}
else {
echo "Wrong Username or Password";
}
?>


Linux.php contents::::

<?php
$connection = ssh2_connect('111.111.111.4', 22);
ssh2_auth_password($connection, 'oracle', 'oracle');
$stream = ssh2_exec($connection, 'ls');
?>
&#13;
&#13;
&#13;