PHP how to specify ldap.conf location?

后端 未结 3 734
被撕碎了的回忆
被撕碎了的回忆 2021-02-10 04:03

I have a PHP compiled with ldap support and it is working as expected. Now, I need to do some configuration for SSL/TLS but I have no ldap.conf file.

php -i says it was

相关标签:
3条回答
  • 2021-02-10 04:42

    See http://php.net/manual/en/function.ldap-connect.php#36156:

    You also need to place those same settings in a file within the Apache Web user homedir called .ldaprc e.g.: cp /usr/local/openldap/etc/openldap/ldap.conf ~www/.ldaprc )

    The apache web server root directory is the key here, as well as .ldaprc.

    Also see the official ldap man pages:

    Users may create an optional configuration file, ldaprc or .ldaprc, in their home directory which will be used to override the system-wide defaults file. The file ldaprc in the current working directory is also used.

    0 讨论(0)
  • 2021-02-10 04:53

    Under XAMPP on Windows the ldap.conf must be either in the root of the system (c:\ldap.conf, PHP 5.3.3 if I remember correctly) or in C:\openldap\sysconf\ depending on the PHP version. It seems the path is not configurable because hardcoded in the Windows PHP DLLs. See the comments at http://se2.php.net/manual/en/ref.ldap.php

    0 讨论(0)
  • 2021-02-10 05:04

    For XAMPP on Windows, the path is C:\openldap\sysconf\ldap.conf and place these two lines in the ldap.conf file:

    TLS_REQCERT never
    
    TLS_CACERT {full_path_to_pem_file}\pem_file.pem
    

    Restart web server and it worked for me.

    0 讨论(0)
提交回复
热议问题