Thanks! Your code is working on my side. As far i ...
# troubleshooting
k
Thanks! Your code is working on my side. As far i can tell, i made a double mistake : Using this deprecated method:
Copy code
$ldap_conn = ldap_connect($ldap_server, $ldap_port);
Where :
Copy code
ldap_set_option($ldap_conn, LDAP_OPT_PROTOCOL_VERSION, 3);
did not do nothing. But when you use
Copy code
$ldap_conn = ldap_connect($ldap_server);
Without :
Copy code
ldap_set_option($ldap_conn, LDAP_OPT_PROTOCOL_VERSION, 3);
It is not working. Thanks all for your time, i can advance !!! Sorry for my mistakes 😦