Hi,
I can't find anything about how to change that 64kb buffer in https / ssl
in http:// work just fine using fcgid or suphp
but in https:// i need to send 64kb or the buffer never flush
how I can make https calls behave exactly as a http:// call?
Just Notice that WHM is using this feature to show a log progress like in Easy Apache or Software Update (the link)
https://mywhm.com:2087/cpsess1xxxxxx571/cgi/tail_upcp2.cgi
I tried many things in the php.ini apache.conf and in the fcgid wrapper, what I am missing?
I can't find anything about how to change that 64kb buffer in https / ssl
in http:// work just fine using fcgid or suphp
PHP:
<?php
ini_set('output_buffering','off');
ini_set('zlib.output_compression',off);
header('Content-Type: text/plain; charset=utf-8');
for($i=0;$i<100;$i++){
echo $i."<br \>";
ob_flush();
flush();
sleep(1);
}
?>
how I can make https calls behave exactly as a http:// call?
Just Notice that WHM is using this feature to show a log progress like in Easy Apache or Software Update (the link)
https://mywhm.com:2087/cpsess1xxxxxx571/cgi/tail_upcp2.cgi
I tried many things in the php.ini apache.conf and in the fcgid wrapper, what I am missing?