You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to get ImageMagick working, but it keeps failing with
PHP Warning: PHP Startup: Unable to load dynamic library
'/app/vendor/php/lib/php/extensions/no-debug-non-zts-20121212/imagick.so' -
libMagickWand.so.2: cannot open shared object file: No such file or directory in
Unknown on line 0
The text was updated successfully, but these errors were encountered:
vim /etc/php.ini remove this "extension=imagick.so" or...
cd /etc/php.d/
rm imagick.ini
service nginx stop && service php-fpm stop && service php-fpm start && service nginx start
o service httpd restart
yum install ImageMagick ImageMagick-devel
pecl install imagick
echo extension=imagick.so >> /etc/php.ini
service nginx stop && service php-fpm stop && service php-fpm start && service nginx start or service httpd restart
Hello,
I am trying to get ImageMagick working, but it keeps failing with
The text was updated successfully, but these errors were encountered: