Magento 2 PHP – Required PHP Extension ‘Imagick’ Not Loaded Error

magento2PHP

I get this error when upgrading my back up Magento 2.

How I can fix this error ? and which module need Imagick ?

My server's OS is CentOS

Best Answer

You need to install the PHP imagick module on your server, for CentOS you should be able to use:

sudo yum install php-imagick

To install the module.

If that doesn't work, you can follow: https://www.scalescale.com/tips/nginx/install-imagemagick-php-imagick-centos/

Installing on CentOS 6: https://www.vultr.com/docs/install-imagemagick-on-centos-6

Related Topic