3 | | Note though, that writing to `php://stderr` in PHP currently will _not_ output to FastCGI's stderr as it should, but will rather write to the file descriptor 2, see [[https://bugs.php.net/bug.php?id=28074 this bug]]. That is, when starting `php-cgi -b` manually from the command line you'll see the output on the screen. Given the above, most likely the problem is related to how you start `php-cgi`, likely execution hangs when the buffer it writes to is exhausted. Try starting `php-cgi` manually from the command line to see if it helps. |
| 3 | Note though, that writing to `php://stderr` in PHP currently will _not_ output to FastCGI's stderr as it should, but will rather write to the file descriptor 2, see [[https://bugs.php.net/bug.php?id=28074|this bug]]. That is, when starting `php-cgi -b` manually from the command line you'll see the output on the screen. Given the above, most likely the problem is related to how you start `php-cgi`, likely execution hangs when the buffer it writes to is exhausted. Try starting `php-cgi` manually from the command line to see if it helps. |