Voting

: max(two, eight)?
(Example: nine)

The Note You're Voting On

glafarge
5 years ago
When using PHP with mode CGI/FastCGI there is a new buffer (initiated by mod_fcgid with a default size of 65536 bytes). That causes `flush()` and `ob_flush()` not working as expected with implicit_flush(true).
Setting "OutputBufferSize 0" in mod_fcgid config resolves the issue.
Hope it helps !

<< Back to user notes page

To Top