Hi - doing my upgrade, I got this error.
" ZIP support not found: SuiteCRM needs ZIP support in order to process compressed files."
How to fix that?
Hi - doing my upgrade, I got this error.
" ZIP support not found: SuiteCRM needs ZIP support in order to process compressed files."
How to fix that?
That’s a module you have to install in your PHP.
Google for something like
“ubuntu 16.04 php zip module”
… using your own system specs, of course.
I don’t know what hosting provider you have but if it’s CPanel, you just enable zip or zlib in PHP Options.
on Ubuntu:
sudo apt-get install php7.0-zip
sudo service apache2 restart
does this command vary for other version of php. like what the comman maybe for php 8.2.1
https://rpmfind.net/linux/rpm2html/search.php?query=php82-php-zip
Php 8.2 does indeed have it’s own php-zip module - above URL is package manager resource (tracker)
I would install like
sudo apt-install php8.2-zip
sudo systemctl restart apache2
Also use the module checker to see if it’s not already there.
php -m
Thank you but it did not work.