I am trying to process a file in the background with the following command, but does nothing.
exec("php csv.php $file $user > /dev/null &", $output);
If I delete > /dev/null & , then the file processes, but not in the background.
exec("php csv.php $file $user", $output);
Any ideas?
php exec
kylex
source share