Re: [PHP] calling imagemagick from php

2004-06-29 Thread Randy C Boland
I seem to remember having similar problems with ImageMagick. Have you checked the permissions on the directory this PHP file is running in? You'll probably need to give group write permissions, and make sure the directory is in the same group that PHP is running under so that it has permission to

Re: [PHP] New changes

2004-06-28 Thread Randy C Boland
Isn't this a moderated list? And if so, how do messages like this keep getting through? On Mon, 28 Jun 2004 20:46:50 +1000, Aidan Lister <[EMAIL PROTECTED]> wrote: > > It's a virus, duh -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] a stupid question

2004-06-25 Thread Randy C Boland
That would work if aFunction was a variable - more less. It would display the inner single quotes, so you'd really want: echo "some text $aFunction some more text"; However, aFunction is, ironically, a function, so it needs to be a function call. echo "some text" . aFunction() . "some more text";