Reply to thread

Can you try this fix. In library/XenForo/Application.php, change:

[code]        while (ob_get_level())

        {

            ob_end_clean();

        }[/code]

to:

[code]while (@ob_end_clean());[/code]


Back
Top Bottom