hi
when i try to bind to my ldap server following error message comes ...
Warning: LDAP: Unable to bind to server: Protocol error in /home/script.php in line 19
what am i doing wrong ?
code:
<?php
$li = ldap_connect("localhost");
echo "Ressource-id: $li<br>\n";
if($li) {
echo "Verbunden ... <br>\nBinde nun ...\n<br>\n";
if(!ldap_bind($li)) {
echo "Kann kein bind bauen ...<br>\n";
} else {
echo "Bind gebaut ...\n";
}
} else {
echo "Fehler beim Verbindungsaufbau zum ldsp-server<br>\n";
}
?>