Hey,
I'm having problem executing shell command as well as script using exec(), system(), or passthru(). It always return code 127, and even really simple script doesn't works :
<?php
exec("date",$date, $int);
print 'date :'.$date[0]."return value " .$int."<br>";
?>
I tried to change the permission of the file, move the file, change the owner of the file without any sucess.
My guess is that "php" doesn't have the right permission
any idea?