I am trying to use imagemagick to resize images as people upload them. I am using the following code.
exec("mogrify -size 120x120 $userfile -resize 120x120");
The image gets uploaded, but mogrify does nothing to it and the image remains untouched.
Any ideas.
No errors are reported!