Linux – Image Magick and Ghostscript

centosghostscriptimagemagicklinux

I mainly do web design but I host a few client sites on a Centos 5 VPS.

A new client has asked me to host their site and I've been given the following configuration requirement:

Apache 2.2.3 
PHP 5.2.17 
MySQL 5.0.77 
Image Magick 6.5.1-0 (not as an Apache module) 
Ghostscript 8.7

Checking php_info() I have:

Apache 2.2.3
PHP 5.2.14
MySQL 5.0.90

I don't have IM or GS listed.

I expect that my versions of PHP and MySQL are similar enough to work, but how do I get my server set up to work with this client's site as well?

Best Answer

The current ImageMagick in the C5 repositories is ImageMagick-6.2.8.0-12.el5, which might be worryingly down-rev for you; yum list ImageMagick ghostscript to see those.

If the client is hard-and-fast about their minimum versions, you might be better off with C6 (apache 2.2.15, php 5.3.3, mysql 5.1.52, ImageMagick 6.5.4, ghostscript 8.70). If they want those exact versions, you're in for a lot of compilation fun.

Related Topic