I have a PHP script which does a LDAP connect, bind and search. It is working very well with most of the Active Directory servers, however one of our clients has a problem. The script returns
Strong(er) authentication required.
error when trying ldap_bind.
All the searches I made directed me to two possible problems:
- I have to set
LDAP_OPT_PROTOCOL_VERSION
to3
- which I do and did before, so this can not be my problem. - The AD server is configured to use SSL authentication - but our client insists that it is a default Windows 2008 R2 server installation, and that does not default to SSL for sure.
What other causes could be for this error to happen?
UPDATE
It was SSL required on Active Directory server ...