Ubuntu 安装PHP的LDAP扩展时遇到的问题以及解决方案

运行环境:

Ubuntu 15.04

PHP 5.5.19


安装PHP的扩展LDAP,按往常习惯,先phpize,再configure,先是碰到下面这个问题:

configure: error: Cannot find ldap libraries in /usr/lib

然后我用apt-cache search ldap | grep ldap 来搜索相关的扩展包,找到了libldap2-dev并且安装好了。

再运行configure 发现下面这个问题:

configure error: Cannot find header file 'ldap.h'

然后我whereis ldap了一下,在/usr/include/下的确存在这个文件,然后我继续搜,找到如下解决方案:

cd /usr/lib/x86_64-linux-gnu #如果是32位系统,目录是/usr/lib/i386-linux-gnu
sudo ln -s /usr/include/ldap.h ldap.h

然后改了configure语句,如下:

./configure --with-php-config=/usr/local/php/bin/php-config --with-ldap=/usr/lib/x86_64-linux-gnu
......(以下照常)

搞定了!

你可能感兴趣的:(Ubuntu 安装PHP的LDAP扩展时遇到的问题以及解决方案)