On Fri, 2005-07-29 at 22:17, leonski wrote: > Jason Wong wrote: > > On Saturday 30 July 2005 08:49, leonski wrote: > > > > > >> sh: line 1: /usr/local/bin/mogrify /tmp/phpS1KCen -resize 320x240! : > >>No such file or directory sh: line 1: /usr/local/bin/mogrify > >>/tmp/phpS1KCen -resize 95x72! : No such file or directory > >> > >>beats me how it gets inside the if, if it doesn't exist! > > > > > > I think the error message is trying to tell you that > > "/usr/local/bin/mogrify" does not exist. > > > :-( yeah it does and it works under the terminal (nicely I might add, > thanks ImageMagick). > leonski. Because you've used escapeshellargs() (or whatever it is) it's probably treating the entire parameter to exec() (excluding the string concatenation for output redirection) as the command to execute. I know you said you tried it otherwise but try the following: if( file_exists( $imagefile ) ) { $arg = escapeshellarg( $imagefile ); exec( "/usr/local/bin/mogrify $arg -resize 95x72 "); } Cheers, Rob. -- .------------------------------------------------------------. | InterJinn Application Framework - http://www.interjinn.com | :------------------------------------------------------------: | An application and templating framework for PHP. Boasting | | a powerful, scalable system for accessing system services | | such as forms, properties, sessions, and caches. InterJinn | | also provides an extremely flexible architecture for | | creating re-usable components quickly and easily. | `------------------------------------------------------------' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php