我对使用LDAP并不熟悉,并且一直在查看一些堆栈溢出问题,并尝试将一些代码拼凑在一起。
我正在使用我的php的PEAR LDAP2包。到目前为止,我已经设置了我的过滤器,但我还没有搜索任何东西。
我要做的就是建立与服务器的连接,但是当我的代码到达时:
$ldap= Net_LDAP2::connect($config);
脚本冻结并产生白屏。我该如何解决这个问题?
下面的脚本:
<?php
include '../config/connection.php';
require_once '../Scripts/Net_LDAP2-2.0.12/Net/LDAP2/LDAP2.php';
//retrieve information from the form
$username = $_POST['username'];
$password = $_POST['password'];
$usernamefilter = Net_LDAP2_Filter::create('username', 'equals', $username);
$passwordfilter = Net_LDAP2_Filter::create('password', 'equals', $password);
$combinedFilter = Net_LDAP2_Filter::combine('and', array($usernamefilter, $passwordfilter));
echo "filters have been created. <br />";
// The configuration array:
$config = array (
'binddn' => 'username',
'bindpw' => 'password',
'basedn' => 'ou=People,dc=campus,dc=aston,dc=ac,dc=uk',
'host' => 'gc.campus.aston.ac.uk',
'filter' => $combinedFilter
);
echo "config array has been set up. <br />";
// Connecting using the configuration:
$ldap = Net_LDAP2::connect($config);
echo "connection to ldap has been sent. <br />";
// Testing for connection error
if (PEAR::isError($ldap)) {
die('Could not connect to LDAP-server: '.$ldap->getMessage());
}
答案 0 :(得分:0)
考虑使用已知正常的客户端验证LDAP目录服务器是否正确响应LDAP客户端请求。供应商分发的ldapsearch
是此任务的最佳选择。执行以下搜索以验证服务器是否正在接受连接客户端连接并响应:
ldapsearch -h gc.campus.aston.ac.uk -p <your-port> \
-D the-distinguished-name -w password \
-b 'ou=People,dc=campus,dc=aston,dc=ac,dc=uk' \
-s base '(&)' 1.1
如果此方法挂起,失败或未返回任何条目,请更正问题并重新测试,直到上述命令成功为止。
注意:如果您使用旧的旧版OpenLDAP ldapsearch,请添加-x命令行选项