web-dev-qa-db-fra.com

Installer php-zip sur php 5.6 sur Ubuntu

Je n'arrive pas à installer php-Zip sur mon Ubuntu VM avec le dernier php5.6.

Impossible de trouver quelque chose de clair à ce sujet.

J'ai toujours cette erreur Apache:

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

Merci

77
Anthony

Essayez soit

  • Sudo apt-get install php-Zip ou
  • Sudo apt-get install php5.6-Zip

Ensuite, vous devrez peut-être redémarrer votre serveur Web.

  • Sudo service Apache2 restart ou
  • Sudo service nginx restart

Si vous installez sur un système d'exploitation Centos ou Fedora, utilisez yum à la place d'apt-get. exemple:-

Sudo yum install php-Zip ou Sudo yum install php5.6-Zip et Sudo service httpd restart

171
Gareth Parker