2
I have a local LDAP server created in Apache Directory Studio, running on port 10389.
When I connect using php, I can do searches normally, but when I try to connect using Python’s ldap3 module, I can’t do Bind on the server. The answer is always a mistake.
I use the same credentials, both in PHP and Python. The only configuration that I could not do in Python and that I use in PHP is:
ldap_set_option($conn, LDAP_OPT_REFERRALS, 0);
Someone would have some light?
Thank you