What are the methods to enable output buffering in either the PHP script file or the use and htaccess file?
I use the following method in the htaccess file at the root of my application:
php_value output_buffering On php_value output_handler mb_output_handler
On one of my hosting accounts (linux hosting with PHP 5.2.x) the above gives a blank page. Technical support says that they cannot include it in the php.ini file, but I can include it in my script ...
ob_start() and ob_end_flush() also give the same result. What can I do?
php output-buffering
anon445699
source share