Reputation: 281
Actually, I don't understand what's the problem going on
Upvotes: 0
Views: 126
Reputation:
You can install the zip extension for php 7 on ubuntu by using the ssh command line:
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
try
sudo apt-get install php-zip
And then you need to restart apache to include this extension:
sudo service apache2 restart
Upvotes: 1
Reputation: 2588
As mentioned, it requires the zip extension
.
You can install it by running:
sudo apt-get install php7.2-zip
Upvotes: 0