Registered: 06/04/06
Posts: 10164
Loc: Aberdeen, WA
Do you have safe mode turned on Mark, with any open_basedir restrictions? If PHP is locked down with some safe mode restrictions then that could be why it's resulting in a white screen. I'll need to add more debugging to the output, but it could be that you don't have access to the "exec" command as well.
Express Hosting
"We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
Registered: 07/04/06
Posts: 4447
Loc: Liverpool : England : UK
Php isnt in safe mode, open base DIR is ON
i can turnn it off
_________________________ Version v7.5.6 < Threads satisfaction status People who inspire me RickGizmo Ian David jgeoff ntdoc Oooo i hear 8 is coming? just after 7 my friend.
_________________________ Version v7.5.6 < Threads satisfaction status People who inspire me RickGizmo Ian David jgeoff ntdoc Oooo i hear 8 is coming? just after 7 my friend.
Registered: 06/04/06
Posts: 10164
Loc: Aberdeen, WA
I should put a check in to make sure that the exec function is accessible as well. What you can do is make a quick and dirty php file, and then bring it up in your browser.
PHP:
<?php
if (function_exists('exec')) {
echo "Yes, exec() is availalbe.";
} else {
echo "No, exec() is not available.";
} // end if
?>
Registered: 06/05/06
Posts: 14994
Loc: Portland, OR; USA
Yeh, that version of ImageMagick should work fine for what you're doing here.
Are convert and morgify in your /usr/bin properly?
If there is some sort of security issue blocking access to them you could try copying them to the web-root of each site wanting to use them and re-link to them in the control panel, just as a test to see if that is the case...
Registered: 07/04/06
Posts: 4447
Loc: Liverpool : England : UK
Checking the above posts, Status Making a Dirty php file lol.
Are convert and morgify in your /usr/bin properly?
Paths entred in ImageMagick Settings cp /usr/bin/convert /usr/bin/mogrify
_________________________ Version v7.5.6 < Threads satisfaction status People who inspire me RickGizmo Ian David jgeoff ntdoc Oooo i hear 8 is coming? just after 7 my friend.
Registered: 07/04/06
Posts: 4447
Loc: Liverpool : England : UK
Dirty PHP result = Yes, exec() is availalbe.
_________________________ Version v7.5.6 < Threads satisfaction status People who inspire me RickGizmo Ian David jgeoff ntdoc Oooo i hear 8 is coming? just after 7 my friend.