Re: [PHP] Error with system() when running convert

2004-12-21 Thread Jonathan Schwarz
There's a cool utility at: http://freespace.sourceforge.net/errno/index.html Of course, errno 127 is 'unknown error', so it wouldn't have been a huge help. On Tue, 21 Dec 2004 11:00:05 -0800 (PST), Richard Lynch [EMAIL PROTECTED] wrote: with anything else. Has anyone run across error 127

[PHP] Error with system() when running convert

2004-12-20 Thread Jonathan Schwarz
I'm using some system calls to do some image processing, mostly just resize, compress, and a few other simple tasks on some jpgs. I'm using convert, djpeg, cjpeg, mogrify, etc to accomplish this. The issue I'm running into now is that I have a command that runs fine from the command line, but not

[PHP] Re: Error with system() when running convert

2004-12-20 Thread Jonathan Schwarz
Well, answering my own question, it turns out that convert is in /usr/X11R6/bin, which is not in php's path. Creating an alias in /usr/bin solved the issue. On Tue, 21 Dec 2004 00:59:40 -0500, Jonathan Schwarz [EMAIL PROTECTED] wrote: I'm using some system calls to do some image processing