I have a problem with PHP ob_flush();
ob_flush();
It seems that it does not work only in IE10.
gzip and caching are disabled on the server, it works everywhere except IE10.
If anyone knows how to solve this mystery, I would be grateful! :)
Thank!
If your output is less than 256 bytes, this could be a problem.
Quote from flush () documentation :
Some versions of Microsoft Internet Explorer will only start displaying the page after they receive 256 bytes of output, so you may need to send extra spaces before cleaning so that these browsers display the page.
send header("Content-type: text/html;charset=utf-8;");
header("Content-type: text/html;charset=utf-8;");