Posts: 9
Threads: 4
Joined: Nov 2015
Reputation:
0
did you get a fix for the zlib.output_compression = on issue?
Posts: 1
Threads: 0
Joined: Feb 2020
Reputation:
0
I have the exact same issue. Fresh install, windows/xampp, i have other sites working on CI 3. This was a fresh install with composer (done yesterday), error log just shows home controller loaded, blank page.
if i remove:
while (\ob_get_level() > 0)
{
\ob_end_flush();
}
\ob_start(function ($buffer) {
return $buffer;
});
from events.php it works, with code back in blank page.
Posts: 103
Threads: 5
Joined: Nov 2014
Reputation:
0
I have just been facing this exact problem.
I am using shared hosting using cPanel.
In my system, there is an option to turn OFF zlib.output_compression and when I do that, it goes from only delivering blank pages, to fully rendered website.
The headers all show a completely good transfer return code 200, all looks good, but there is no payload in the transfer.
I would suggest that this is therefore, still a real world problem.