You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when using ssl, you need to create a connection string as follows since it's using ldaps and you can't pass in the port variable. This breaks ssl connections on ports other than 636 since that is the default if no port is specified.
when using ssl, you need to create a connection string as follows since it's using ldaps and you can't pass in the port variable. This breaks ssl connections on ports other than 636 since that is the default if no port is specified.
src/Connections/Ldap.php: lines 340-342
Add:
return $this->connection = ldap_connect($protocol.$hostname.":$port");
The text was updated successfully, but these errors were encountered: