Showing posts with label ext-zip. Show all posts
Showing posts with label ext-zip. Show all posts

Monday, June 28, 2021

PHP : PHP7.4 Install ZIP extension

1. #yum install pcre-devel gcc zlib zlib-devel libzip-devel make2. #pecl install zip If this issue happen Issue : checking for libzip... configure: error: system libzip must be upgraded to version >= 0.11Solutions:#yum  -y remove libzip-devel#wget https://libzip.org/download/libzip-1.3.2.tar.gz#tar xvf libzip-1.3.2.tar.gz#cd libzip-1.3.2#./configure#make && make install3....