博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php扩展有哪些G11,php 几个扩展(extension)的安装笔记
阅读量:6452 次
发布时间:2019-06-23

本文共 3102 字,大约阅读时间需要 10 分钟。

php 几个扩展(extension)的安装笔记

centos下安装php扩展时遇到的问题

1.imap

cd /root/php-5.6.27/ext/imap

/usr/local/php/bin/phpize

./configure --prefix=/usr/local/imap

错误1

configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional information.

解决方法

yum install libc-client-devel -y

错误2

configure: error: Cannot find imap library (libc-client.a). Please check your c-client installation.

解决方法

ln -s /usr/lib64/libc-client.so /usr/lib/libc-client.so

错误3

configure: error: This c-client library is built with Kerberos support.Add --with-kerberos to your configure line. Check config.log for details.

解决方法

./configure --prefix=/usr/local/imap --with-kerberos

错误4

configure: error: This c-client library is built with SSL support.Add --with-imap-ssl to your configure line. Check config.log for details.

解决方法

./configure --prefix=/usr/local/imap --with-kerberos --with-imap-ssl

make && make install

2.opcache

复制代码

cd /root/php-5.6.27/ext/opcache

/usr/local/php/bin/phpize

./configure --prefix=/usr/local/opcache

make && make install

echo "extension = /usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/opcache.so" >> /etc/php.ini

service php-fpm restart

复制代码

错误1

Gracefully shutting down php-fpm . done

Starting php-fpm [15-Jan-2018 13:45:26] NOTICE: PHP message: PHP Warning: PHP Startup: Invalid library (appears to be a Zend Extension, try loading using zend_extension=/usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/opcache.so from php.ini) in Unknown on line 0

done

解决方法

把extension改成zend_extension

echo "zend_extension = /usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/opcache.so" >> /etc/php.ini

3.apcu

默认没有apcu的扩展包,需要额外下载

github地址

https://github.com/krakjoe/apcu

php 5.6版本,下载4.0.11版本的apcu

https://codeload.github.com/krakjoe/apcu/tar.gz/v4.0.11

然后是正常安装

4.gd

首先安装:jpegsrc,freetype,libpng

tar xf jpegsrc.v9.tar.gz

cd jpeg-9/

CFLAGS="-O3 -fPIC" ./configure --prefix=/usr/local/jpeg

make && make install

tar zxf freetype-2.7.1.tar.gz

cd freetype-2.7.1

./configure --prefix=/usr/local/freetype

make && make install

tar zxf libpng-1.6.29.tar.gz

cd libpng-1.6.29

CFLAGS="-O3 -fPIC" ./configure --prefix=/usr/local/libpng

make && make install

然后编译gd库

cd /root/php-5.6.27/ext/gd/

/usr/local/php/bin/phpize

./configure --with-php-config=/usr/local/php/bin/php-config --with-jpeg-dir=/usr/local/jpeg --with-png-dir=/usr/local/libpng --with-freetype-dir=/usr/local/freetype

make && make install

复制最后显示的一行 /usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/

在/etc/php.ini最后一行添加

echo "extension = /usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/gd.so" >> /etc/php.ini

5.ldap

php-ldap模块作用就是实现ldap认证,因此需要安装openldap openldap-devel

yum install openldap

yum install openldap-devel

拷贝库文件

cp -frp /usr/lib64/libldap* /usr/lib/

编译安装php-ldap模块

cd /usr/local/src/php-7.0.21/ext/ldap/

/usr/local/php/bin/phpize

./configure --with-php-config=/usr/local/php/bin/php-config

make

make install

然后在php的php.ini的配置文件添加

echo "extension = /usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/ldap.so" >> /etc/php.ini

转载地址:http://wjyzo.baihongyu.com/

你可能感兴趣的文章
在线BASE64加密解密、UrlEncode编码/解码、native/ascii在线转换工具
查看>>
CentOS 6.3 安装 JDK
查看>>
XenServer 6.5实战系列:Creating a VM Template from an Existing VM
查看>>
poi导出word
查看>>
云终端选购注意规避五个陷阱
查看>>
关于 Java 对象序列化您不知道的 5 件事
查看>>
cronolog介绍
查看>>
rpm包管理命令使用详解
查看>>
Linux 的 NUMA 技术
查看>>
虚拟磁带库VTL在实践中的优势
查看>>
人生需要放下的八样东西
查看>>
企业级Nginx Web 服务优化实战
查看>>
IE和Firefox对同一域名进行请求的并发连接数限制
查看>>
arm linux ppp拨号gprs上网移植
查看>>
linux新建用户的全程解析
查看>>
微软原版Windows XP Pro With SP3 VOL MSDN原版镜像
查看>>
学点Unicode又不会死
查看>>
linux关于关闭防火墙和selinux的操作
查看>>
python 文件操作
查看>>
MCSE命令学习持续更新
查看>>