• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Using ImageMagick ... seems not possibile

S

scislaghi

Guest
Hi all,

i've read many posts about imagemagick. I've installed it on my RHEL 3 + PSA 7.5.4 to use serendipity blog system.

I've use rpm provided on www.pbone.net

ImageMagick-5.5.7.33-1.3_1.el3.at

But php pages are not able to run it. Is there some tips?

Thanks
Stefano
 
What happens when you run

convert -version

at the command line?

And have you tried installing from source? It is easy.

wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz

tar -xvzf ImageMagick.tar.gz

cd ImageMagick-(the version you downloaded)

./configure

make

make install

And that's it! Try:

/usr/local/bin/convert -version

again to see if things have improved.

Note that I have no idea about how PHP talks to ImageMagic. However, there is an API called MagicWand -- this gets installed when you compile from source as above.

Also note that the RPM version you may (or may not) have installed already will remain in your system. You may want to remove it with rpm -e (name of the package) so that applications don't use the "old" version or get confused.

Faris.
 
Back
Top