January 2010
M T W T F S S
« Dec   Feb »
 123
45678910
11121314151617
18192021222324
25262728293031
  1. We welcome any feedback, questions or comments

Enable imagick entension on PhP

Question.

I want to enable imagic extension on php. I uses Centos5 and php was compiled by hand.

Solution.

#yum install  ImageMagick* #pecl install imagick  sometimes you may have ask to install gcc compiler. if so execute #yum install gcc* added the extension on php.ini #echo "extension=imagick.so" >> /etc/php.ini #service httpd restart

[root@rc-170 test]# php [...]