I\'m calling this in my php script:
exec(\"gutschein.php >/dev/null 2>&1 &\");
Calling the script (generates a pdf and s
You can use screen: screen -d -m /usr/bin/php gutschein.php
screen -d -m /usr/bin/php gutschein.php
Here is screen's manual if you need more info on options.