-----test123.php-----
[php]<?php echo "hello world"; ?>[/php]
-----test.php-----
[php]<?php $test = exec(“php -q /usr/www/lib/test123.php”);
echo $test[0];
?>[/php]
When I try and run test.php, it just hangs. I have 3 processes started (on linux) and the web page just spins for ever. I have tried fullt qualifying the php path as well as tried using php-cli (which it says I do not have, running verision 5.3…). Does anyone have any ideas?
All help is greatly appreciated!