1

I have installed Wordpress on Google Cloud. I am getting this error. Oops, Unyson Backup requires PHP Zip module but it is not enabled on your server. If you are not familiar with PHP Zip module, please contact your hosting provider.

My Question is how to enable php zip module on my google compute engine?

Screenshoot

Joundill
  • 3,550
  • 7
  • 21
  • 40
  • Does this answer your question? [Install php-zip on php 5.6 on Ubuntu](https://stackoverflow.com/questions/38104348/install-php-zip-on-php-5-6-on-ubuntu) – Wojtek_B Aug 24 '20 at 11:01

1 Answers1

0

First you need SSH access to a VM running your Wordpress.

Usually it's enough to type sudo apt install php-zip (for Ubuntu & Debian) or sudo yum install php-zip (for Fedora & CentOS). It will install the PHP extension and now just restart the service sudo service httpd restart.

This question was also discussed here and has several answers.

Wojtek_B
  • 2,263
  • 1
  • 4
  • 13
  • I've installed it as you indicate but when I do `php -m` I don't see it listed. I've added a `/etc/php/7.4/cli/conf.d/20-zip.ini` but it doesn't help. what else do I need? – ekkis Mar 04 '21 at 23:03