PHP Fatal error: Class “ZipArchive” not found
-
I encountered and error when trying to export the settings and this was due to ‘zip’ not being installed.
This is how I fixed it with PHP version 8.2 with Apache2/PHPFPM on Linux.
sudo apt-get install php8.2-zip
nano /etc/php/8.2/fpm/php.ini
Add extension=zip.so and save
service php8.2-fpm restart
service apache2 restart
I hope this helps someone who may encounter the same error.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.