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 create files in the directory.  You may also need
to specify a full path in the command (ie, something like
/usr/bin/convert or whatever it is)


On Tue, 29 Jun 2004 11:40:47 -0400, Edward Peloke [EMAIL PROTECTED] wrote:
 
 I changed 200 x 200 to 200x200 and it still doesn't work.  I also checked
 and safe_mode is OFF.
 
 Thanks,
 Eddie

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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;

On Fri, 25 Jun 2004 10:09:42 -0500, Alicia Riggs
[EMAIL PROTECTED] wrote:
 
 Your problem is the paren's
 
 echo 'some text' $aFunction 'some more text';
 
 You need double quotes for the entire string, but single quotes around
 the text so it knows it is text.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php