This topic is locked

Using LDAPS server for authentication

1/31/2025 5:07:43 PM
PHPRunner Tips and Tricks
Sergey Kornilov admin

If you use Active Directory authentication and your LDAPS server returns "Can't contact LDAP server" error message, here is what you can try.

  1. On the machine where your web server is located create this file: c:\openldap\sysconf\ldap.conf
    This name is hardcoded in PHP LDAP extension and can not be changed.
  2. Add this line to the file:

    TLS_REQCERT never


  3. Restart the webserver

That should help.