I\'m calling this in my php script:
exec(\"gutschein.php >/dev/null 2>&1 &\");
Calling the script (generates a pdf and s
All output must be redirected, else the script will hang as long as gutschein.php executes. Try
exec('/usr/bin/php gutschein.php &> /dev/null &');