Install LDAP

2018-01-26 14:59:32
Yves
4439
Last edited by MCFEY on 2020-03-28 10:27:09

Because the LDAP verification requires LDAP extension for PHP, and it depends on the LDAP extension. So you must install the LDAP extension if you want to use the extension and your LDAP does not load the extension.


1. Install LDAP in Windows

1.1  If your PHP already has a php_ldap.dll file, you can open the php.ini file, find the ";extension=php_ldap.dll" and save the file after removing the ";".
1.2  If you do not have a php_ldap.dll file, first find the online PHP files according to your own need and place it in the appropriate directory, then repeat the process mentioned above.

1.3  Restart Apache.


2. Install LDAP in Linux

2.1 If your PHP is compiled and installed, you need to add the "--with-ldap" to recompile the installation.
2.2 If your PHP is installed through the Linux package manager, you can install the php_ldap through the package manager. Taking Debian as an example, implement apt-get install php5-ldap.

2.3  Restart Apache.


3. To see whether the installation is successfully

Open the phpinfo () test screen. If you can see the following picture,  that means the installation is successfully done.

Write a Comment
Comment will be posted after it is reviewed.