Issue LDAPS with specific port
-
Hello,
At first, thanks for your work.
I have encounter some issue with a LDAPS server with a port specified in WP BO like <domain>:<port>. And I have got an error on ldap_bind function call (ldap_bind(): Unable to bind to server: No such object)
To fix these issue, I have made these correction line 293:
– $connection = ldap_connect($protocol.$dc);
+ $url = (isset($port) && strlen($port)) ? $protocol.$dc . ‘:’ . $port : $protocol.$dc;
+ $connection = ldap_connect($url);If these could help someone.
Best regards,
- The topic ‘Issue LDAPS with specific port’ is closed to new replies.