• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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