Home >Backend Development >PHP Tutorial >Error occurs when compiling PHP on CentOS 64: Cannot find ldap libraries in /usr/_PHP tutorial
Error occurs when compiling PHP on CentOS 64: Cannot find ldap libraries in /usr/lib. Friends in need can refer to it.
Compile and install PHP5.4.8 under CentOS 64-bit. cp -frp /usr/lib64/libpng* /usr/lib/ The result is prompted
during configureconfigure: error: Cannot find ldap libraries in /usr/lib
It prompts that the relevant modules cannot be found in /usr/lib. This is because 64-bit Linux stores the above files in the /usr/lib64 folder by default.
Solution:
The code is as follows
|
Copy code
|
||||
cp -frp /usr/lib64/libldap* /usr/lib/ |
http: //www.bkjia.com/PHPjc/632161.html