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
Make sure that your output buffering doesn't start automatically. Run:
print ob_get_level ();
before ob_start (); if will will see something else then 0 you've got the answer.