centos - imageMagick installation problems -
i have installed imagemagick warning loaded php startup. how can solve this?
[root@vps06 /]# identify -version version: imagemagick 6.8.1-10 2013-07-18 q16 http://www.imagemagick.org copyright: copyright (c) 1999-2013 imagemagick studio llc features: dpc openmp delegates: bzlib freetype jng jp2 jpeg lcms png ps tiff x zli [root@vps06 /]# php -m | grep imagick php warning: php startup: unable load dynamic library '/usr/lib64/php/modules/imagick.so' - libfftw3.so.3: cannot open shared object file: no such file or directory in unknown on line 0
you'll need install imagick module php. easiest way pecl command.
sudo pecl install imagick
you can manually install package if need more control of local build
curl -o http://pecl.php.net/get/imagick-3.1.0rc2.tgz tar zxvf imagick-3.1.0rc2.tgz && cd imagick-3.1.0rc2.tgz phpize ./configure # add custom build options here make sudo make install
Comments
Post a Comment