I have tried various methods from posts on this site to check if output buffering is turned on and working.
Here is my source code
<?php
ob_start();
if(ini_get('output_buffering')) { echo 'it is on'; } else { echo 'dosent seem to be working';}
?>
Results in "dosent seem to be working"
I have tried phpinfo function to check my server details
output_buffering no value no value
Am I just checking incorrectly or is it most likely that output buffering is disabled? And if its disabled why would it be? Do It companies have a good reason to disable OB.
Thanks