以下は、Active Directoryにユーザーを追加するために使用しているコードです
<?php
$ldapConn = ldap_connect('ldap://xxx.xx.x.xx:389');
ldap_set_option($ldapConn, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_bind( $ldapConn, 'xx.xx@xx.xx', 'xxxx');
$dn_user='CN=testLDAP,OU=xx,DC=xx,DC=xx';
$ldaprecord['cn'] = "testLDAP";
$ldaprecord['givenName'] = "testLDAP";
$ldaprecord['sn'] = "testLDAP";
$ldaprecord['sAMAccountName'] = "testLDAP";
$ldaprecord['UserPrincipalName'] = "testLDAP@xx.xx";
$ldaprecord['displayName'] = "testLDAP";
$ldaprecord['name'] = "testLDAP";
$ldaprecord['UserAccountControl'] = "544";
$ldaprecord['objectclass'][0] = 'top';
$ldaprecord['objectclass'][1] = 'person';
$ldaprecord['objectclass'][2] = 'organizationalPerson';
$ldaprecord['objectclass'][3] = 'user';
$ldaprecord['mail'] = "testLDAP@abc.com";
$add = ldap_add($ldapConn, $dn_user, $ldaprecord);
if($add) {
echo "User successfully added";
} else {
echo "User not added";
}
ldap_close($ldapConn);
?>
しかし、私はエラーが発生しています
警告: ldap_add() [function.ldap-add]: 追加: LDAP サーバーに接続できません
私のコードの何が問題なのですか、助けてください..よろしくお願いします..