There is a script that connects in a cycle with different DBMS servers (the DBMS are NOT in the local network, because there are GREAT delays). The cycle consists of 48 DBMS servers. On each DBMS, some queries are executed. Query results, displayed in a single table HTML page.
The output of the page is like "parts". That is, the Apache Web server starts to produce a page when the php script has not fully processed all the database servers. Are there any settings to regulate such output in either Apache or php? AND
As I understand it, you need to look at directives in php.ini
output_buffering = Off implicit_flush = Off
and using the flush(),ob_*()
functions. I'm right?