test
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • doorknob Friend
    #193373

    Whilst investigating a problem with the layout file I inspected the php error log and found it full of ob_clean() errors. On further investigation, I found that the output buffer is cleared whether it exists or not. I fixed it for me by changing t3/includes/admin/layout.php line 109 from:

    ob_clean();

    to

    $ob_status = ob_get_status();
    if (isset($ob_status['status']) && $ob_status['status'] != PHP_OUTPUT_HANDLER_START) {
    ob_clean();
    }

    Now my php errors file doesn’t fill up so fast.
    Phil

    Wall Crasher Developer
    #517106

    Thank for your report on the output buffering issue, we will apply the fix you suggest.

Viewing 2 posts - 1 through 2 (of 2 total)

This topic contains 2 replies, has 2 voices, and was last updated by  Wall Crasher 10 years, 11 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum