Monday, November 28, 2011

Install IMageMagic with the support of JPEG,PNG,TIFF


yum install libpng.i386
yum install libpng..68_64
yum install libtiff.i386
yum install libtiff..68_64
 yum install libtiff-devel.i386
yum install libtiff-devel..68_64
yum install libpng-devel.i386
yum install libpng-devel.x86_64
wget ftp://mirror.aarnet.edu.au/pub/imagemagick/ImageMagick-6.7.2-1.tar.gz
tar xzf ImageMagick-6.7.2-1.tar.gz
cd ImageMagick-6.7.2-1
 ./configure --enable-shared --with-jpeg=yes --with-png=yes --with-tiff=yes --with-xml=yes
 make
 make install

To Know image format support of Imagemagik

identify -list format

identify -list format | grep -i tif

Wednesday, November 23, 2011

Invalid command “SSLEngine”, perhaps misspelled OR defined by a module not included.

    “Invalid command “SSLEngine”, perhaps misspelled or defined by a module not included in the server configuration”

while browsing the website. The error message indicates that the module mod_ssl required to run SSL engine on a CentOS server is missing and needs to be installed.

Install the mod_ssl module using yum

    #yum install mod_ssl

Once it is installed, make sure to restart the Apache service

    #service httpd restart