Actually, I don't understand what's the problem going on
Asked
Active
Viewed 110 times
0
-
1Your php configuration does not have the php-zip extension enabled. Check for modules in the php.ini file and enable the ones you need. – Jite Mar 07 '18 at 10:05
-
1Possible duplicate of [Can't install laravel installer via composer](https://stackoverflow.com/questions/46058457/cant-install-laravel-installer-via-composer) – linktoahref Mar 07 '18 at 10:12
2 Answers
1
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
0
As mentioned, it requires the zip extension
.
You can install it by running:
sudo apt-get install php7.2-zip

Prince Lionel N'zi
- 2,510
- 2
- 12
- 27