92

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

SoCkEt7
  • 2,088
  • 5
  • 20
  • 27
  • Did you follow the instructions at http://php.net/manual/en/zip.installation.php ? I know recompiling PHP from source is not ideal but it's the most reliable way to get exactly what you need out of it, in my opinion. – apokryfos Jun 29 '16 at 15:52

1 Answers1

199

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

Ravi Ranjan
  • 105
  • 2
  • 11
Gareth Parker
  • 4,864
  • 2
  • 16
  • 41