md01 that zip its a php extension you have to install within your server to make that work, I do not believe it comes by default in aaPanel, however if you are running Centos I tell you how to do it at your own risk. Please understand that I know nothing regarding your machine and you have not provided any details regarding that, so this installation is for PHP ZIP Extension.
How to install zip module php-zip on Centos or Fedora
- Install dependencies as root or using sudo:
yum install pcre-devel gcc zlib zlib-devel
- Install zip module using PECL (PEAR‘s sister):
pecl install zip
- Edit the main PHP configuration file to register the new module. Add this text:
extension=zip.so;
a few lines before this:Module Settings
in /etc/php.ini, as root or using sudo, like this:nano /etc/php.ini
- Restart your web server as root or using sudo:
service httpd restart
- Check that support is enabled
Hope this helps you!