Hi all!
I'm trying to run a php-script in the background. When I type
php -f script.php3 >>/dev/null &
in my shell, it works without any problems.
However, when I try to run the script from another script with system, it fails. Here is what I'm trying - any ideas?
<?
system("php -f script.php3 >>/dev/null &");
?>