I am using ob_start()/ob_flush() to, hopefully, give me some progress during a long import operation.
ob_start()
ob_flush()
Here is a simple outline of what I\'m
Ob_end_clean() discards the contents of the current output buffer and turns off the buffering. You should use ob_end_flush() instead.