PHP 8.5.0 Alpha 1 available for testing

Voting

: six minus four?
(Example: nine)

The Note You're Voting On

nmmm at nmmm dot nu
13 years ago
It was driving me crazy that the script was killed couple of hours after I logged out, even I started it as:

php server.php >& logfile.txt

looks like PHP somehow interact with standard input, even I do not used it.

Solution was to start it with nohup:

nohup php server.php >& logfile.txt

or to do demonize / run as demon (e.g. fork() and close file descriptors)

<< Back to user notes page

To Top