• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

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