• 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.

PHP + ImageMagick Problem on Plesk

A

alxf1

Guest
I have a problem with ImageMagick and PHP on Plesk

when i'm trying to resize an image from shell (as root) it works perfectly ----- /usr/bin/convert -resize 120x90 source target.jpg

but when I'm trying to make the same through a PHP script it's not working!!!

/usr/bin/convert -version
if I'm trying to execute command above through a php script (web) it will work and return version info... but if i'm trying to resize an image it's not working....

open_basedir is set to none in vhost.conf for the httpdocs directory correctly... and that's seen when you run /usr/bin/convert -version from php...

I had the same problem with newer version of ImageMagick...

----------------------------------
# /usr/bin/convert -version
Version: ImageMagick 6.0.7 05/26/05 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2004 ImageMagick Studio LLC
 
ImageMagick

I had the same problem in trying to get a photgallery to work right. You have to change the permissions of the convert binary to 777 in order for your script to be able to use it.
 
this is not a solution

I have this...
-rwxr-xr-x 1 root root 7992 May 26 13:49 /usr/bin/convert


and it runs from script... but just don't want to resize files...

/usr/bin/convert -version runs ok... and shows version info.....
 
Back
Top