ZIP archive management extension for PHP Bug

Im using plugin for export data and i gor error:

ZipArchive class is missing on your server.
Please contact your web hosting provider and ask them to install and activate ZipArchive.

Im trying install ZIP archive management extension for PHP much more times but, it’s still dispaly

Package lsphp74-common-7.4.2-1.el7.x86_64 already installed and latest version
Nothing to do
PHP Extension Installed.

lsphp74 Zip Extension Issues With CentOS 7.x

If the zip extension for lsphp74 does not exist or is not working on a CentOS 7.x system, this is because CentOS 7 comes with an old libzip library that does not support PHP 7.4.

Solution:
In order to fix this issue, we need to manually compile and install the zip extension for PHP 7.4, as follows.

Install the two dependency packages:

yum install http://packages.psychotic.ninja/7/plus/x86_64/RPMS/libzip-0.11.2-6.el7.psychotic.x86_64.rpm

yum install http://packages.psychotic.ninja/7/plus/x86_64/RPMS/libzip-devel-0.11.2-6.el7.psychotic.x86_64.rpm
Use pecl to install zip:

/usr/local/lsws/lsphp74/bin/pecl install zip

echo “extension=zip.so” > /usr/local/lsws/lsphp74/etc/php.d/20-zip.ini
Kill or restart lsphp so that the changes may take effect:

pkill lsphp