Solution to BT Baota Panel php7.3 and php7.4 not supporting ZipArchive

Solution to BT Baota Panel php7.3 and php7.4 not supporting ZipArchive

The solution to the problem that the PHP7.3 version of Baota Panel does not support ZipArchive, which causes the program to be unable to be directly updated in the background

Execute the following statement in the SSH command line interface:

cd /www/server/php/73/src/ext/zip/
/www/server/php/73/bin/phpize
./configure --with-php-config=/www/server/php/73/bin/php-config
make && make install
echo "extension = zip.so" >> /www/server/php/73/etc/php.ini

Finally, restart the PHP service in the software store.

The solution to the problem that the PHP7.4 version of Baota Panel does not support ZipArchive, which causes the program to be unable to be updated directly in the background

Execute the following statement in the SSH command line interface:

cd /www/server/php/74/src/ext/zip/
/www/server/php/74/bin/phpize
./configure --with-php-config=/www/server/php/74/bin/php-config
make && make install
echo "extension = zip.so" >> /www/server/php/74/etc/php.ini

Finally, restart the PHP service in the software store.

The explanation on this issue on the pagoda

Because the earlier installed Php7.3 is a separate compilation of the zip extension, the subsequent installation and upgrade are integrated compilation, resulting in repeated loading of the zip module after the upgrade

Therefore, subsequent PHP will no longer compile the ZIP extension separately. Now, more than half a year has passed, PHP has been updated to 7.3.8, and the ZIP module is no longer integrated (it is right not to integrate it, and keeping it compiled independently is the safest way), but the ZIP extension has not been compiled and installed separately.

Well, the solution is also very simple, the ZIP extension is already included in the software package, just add it back:

cd /www/server/php/73/src/ext/zip/
/www/server/php/73/bin/phpize
./configure --with-php-config=/www/server/php/73/bin/php-config
make && make install

Then, add back the line you deleted previously from your PHP configuration file:

echo "extension = zip.so" >> /www/server/php/73/etc/php.ini

Finally, reload the PHP service:

service php-fpm-73 reload

This is the end of this article about the solution to the problem that BT Baota Panel php7.3 and php7.4 do not support ZipArchive. For more related content about BT Baota php7.3 and php7.4 not supporting ZipArchive, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Analysis of PHP's method of obtaining real IP and IP simulation
  • PHP determines whether the IP address is within multiple IP segments
  • PHP sample code to count IP addresses and online users
  • Get the access user IP through PHP
  • PHP Pipeline middleware implementation example code
  • Example of native javascript ajax request and background PHP response operation
  • PHP uses the ZipArchive class to operate files
  • Examples of common methods for generating zip compression packages in PHP
  • How to decompress zip and rar compressed files in php
  • PHP implements IP conversion and shaping based on ip2long

<<:  MySQL slow query method and example

>>:  Dynamically edit data in Layui table row

Recommend

Detailed explanation of the principle and usage of MySQL views

This article uses examples to illustrate the prin...

Practical record of MySQL 5.6 master-slave error reporting

1. Problem symptoms Version: MySQL 5.6, using the...

MySQL column to row conversion, method of merging fields (must read)

Data Sheet: Column to row: using max(case when th...

Use the njs module to introduce js scripts in nginx configuration

Table of contents Preface 1. Install NJS module M...

Detailed explanation of mixins in Vue.js

Mixins provide distributed reusable functionality...

Vue implements star rating with decimal points

This article shares the specific code of Vue to i...

Centos 7 64-bit desktop version installation graphic tutorial

If you think the system is slow and want to chang...

Detailed explanation of CSS BEM writing standards

BEM is a component-based approach to web developm...

What to do if you forget the initial password of MySQL on MAC

The solution to forgetting the initial password o...

A detailed tutorial on using Docker to build a complete development environment

Introduction to DNMP DNMP (Docker + Nginx + MySQL...

Detailed steps for installing MySQL using cluster rpm

Install MySQL database a) Download the MySQL sour...

Two ways to completely delete users under Linux

Linux Operation Experimental environment: Centos7...

Linux method example to view all information of the process

There is a task process on the server. When we us...

Html+css to achieve pure text and buttons with icons

This article summarizes the implementation method...