时间:2021-07-01 10:21:17 帮助过:3人阅读
[RuntimeException]
The Zip PHP extensionisnot installed. Please install it andtry again.
安装php,zip模块
cd /usr/local/src
wget http://pecl.php.com/get/zip-1.12.4.tgz
tar xvf zip-1.12.4.tgz -C /usr/local/
cd /usr/local/zip-1.12.4
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make && make install
安装完成后会在/usr/local/php/lib/php/extensions/下生成no-debug-non-zts-xxxxxxxx的目录,其中包含了zip.so
vim /etc/php.ini或者vim /usr/local/php/etc/php.ini
添加一行
extension=/usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/zip.so
重新加载或重启fpm
service php-fpm restart
其他zip版本可查看以下连接
http://pecl.php.com/package/zip
以上就介绍了 解决Zip PHP extension is not installed,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。