Why am I getting:
Warning: ob_start(): function '' not found or invalid function name in /symfony-1.3\lib\config\sfApplicationConfiguration.class.php on line 155
This occurs with Symfony 1.x projects. I am using Apache 2.2 and PHP 5.4.1.
The mentioned line has:
ob_start(sfConfig::get('sf_compressed') ? 'ob_gzhandler' : '');
Try using a null
value instead of the empty string.
ob_start(sfConfig::get('sf_compressed') ? 'ob_gzhandler' : null);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With