I\'ve reinstalled Apache, and switched from PHP 5.3 to 5.6. Everything works, except I get this error, when calling ob_start():
ob_start()
Cannot use outpu
maybe this sample code can help you:
ob_start(); echo "test"; $content = ob_get_contents(); ob_end_clean(); var_dump($content);