Hi! I'm running a script on my site that grabs a picture and shrinks it to a certain size like this:
PHP Code:
exec("/usr/bin/convert -resize 186x picotd.jpg picotdsm.jpg");
It hasn't been working lately, triggering an "exec() has been disabled" error.
I can find my way around PHP, but am kind of new to it -- is there another way I can resize the images without using exec()?
Thanks!
Jeff.