Install php-zip on php 5.6 on Ubuntu

PhpZip

Php Problem Overview


I can't install php-zip on my Ubuntu VM with the last php5.6.

Can't find find anything clear on it.

I still get that Apache error :

PHP Fatal error:  Class 'ZipArchive' not found in /var/www/uta/system/library/PHPExcel/PHPExcel/Writer/...

Thanks

Php Solutions


Solution 1 - Php

Try either

  • sudo apt-get install php-zip or
  • sudo apt-get install php5.6-zip

Then, you might have to restart your web server.

  • sudo service apache2 restart or
  • sudo service nginx restart

If you are installing on centos or fedora OS then use yum in place of apt-get. example:-

sudo yum install php-zip or sudo yum install php5.6-zip and sudo service httpd restart

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSoCkEt7View Question on Stackoverflow
Solution 1 - PhpGareth ParkerView Answer on Stackoverflow