Search found 4 matches

by Exirtis
2011-07-06T11:10:38-07:00
Forum: Users
Topic: Newbie here!
Replies: 17
Views: 29464

Re: Newbie here!

Interesting, I got something with the second and third example you gave me: <?php exec("/usr/bin/convert -list",$out,$returnval); print_r($out); ?> and <?php exec("type convert",$out,$returnval); print_r($out); ?> Each returned this: Array ( ) That's not what I want to be seeing though, is it? Or ...
by Exirtis
2011-07-05T15:38:03-07:00
Forum: Users
Topic: Newbie here!
Replies: 17
Views: 29464

Re: Newbie here!

Thanks for the reply! I've tried out the code samples you gave and, unfortunately, none of them changed anything. I haven't looked into permission or ownership problems yet, no. It's a good idea, I'll have to do some research into the kind of problems that crop up with that and ImageMagick and see ...
by Exirtis
2011-07-01T08:38:22-07:00
Forum: Users
Topic: Newbie here!
Replies: 17
Views: 29464

Re: Newbie here!

P.S. It is generally better to start a new thread than attach onto an old one. It gets confusing what has been answered when you tack onto an old one and often it goes unanswered. True. Sorry about that. I should have realized this, but I had been trying to figure out what was happening on my end ...
by Exirtis
2011-06-30T14:50:03-07:00
Forum: Users
Topic: Newbie here!
Replies: 17
Views: 29464

Re: Newbie here!

Sorry to Necro, but I'm having a very similar issue. I've installed phpBB (version 3) on my server (Suse Linux Enterprise 11, 64-bit) and I've tried the example codes given: <?php // Build the array of items to be used exec("convert convert -list list", $IMarray, $code); // Start the loop to find ...