• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Question is imagemagick installed with plesk ?

raykai

Basic Pleskian
im running phpbb forum and its asking for the imagemagick location.

i cant seam to find where the location would be on plesk.

any help would be nice
 
There is two kinds of "imagemagick". The one is the imagemagick shell program that needs exec or shellexec permissions from a subscription to be used, the other one the corresponding PHP module.

Test on the OS level whether this is installed:
# convert -version
Will return version information, if installed. Does not depend on OS version. File location is normally /usr/bin/convert. If you cannot find it there, try
# updatedb
# locate convert | less

If not installed, it can be installed like this:
On Debian and Ubuntu for example:
# sudo apt-get install imagemagick
On Redhat and Centos for example (normally installed already):
# yum install ImageMagick

The second component is "imagick", a PHP component. This should be available by default on Plesk servers. Imagick does not need permissions for exec() or shellexec() and is therefor widely used. Some programs like Typo3 however run the convert utility through exec()/shellexec(), which is a problem for secure shared web space accounts. To test whether imagick module is available in PHP, simply call the phpinfo() function, e.g.
<?php phpinfo() ?>
and check the output the for imagick module.
 
Back
Top