Hi!
I want to bind to ldap using a kerberos ticket.
Here is my code:
putenv( 'KRB5CCNAME=' . $_SERVER['KRB5CCNAME'] );
$ldapConnection = ldap_connect( 'ldap://dc.contoso.com' );
$bind = ldap_sasl_bind( $ldapConnection, NULL, NULL, 'GSSAPI' );
var_dump( error_get_last( ) );
I get a "ldap_sasl_bind(): Unable to bind to server: Not Supported"
Error.
ldap_search using SASL on the Command Line (ldapsearch
-Hldap://dc.constoso.com -bdc=dc,dc=contoso,dc=com samaccountname=user1)
works fine.
Do you guys have any pointers on how to get that working?
Thanks, Mike