• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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