Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #22430, comment 16


Ignore:
Timestamp:
10/22/2019 02:10:30 PM (6 years ago)
Author:
autotutorial
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #22430, comment 16

    initial v1  
    1 To understand what happens, let's take a step back to the source of this error {{{
     1To understand what happens, let's take a step back to the source of this error
     2{{{
    23Notice: ob_end_flush() [ref.outcontrol]: failed to delete buffer zlib output compression in /wp-includes/functions.php on line 2683
    34}}}
    4 ob_end_flush can return false and issue Notice when something goes wrong. the zlib buffer cannot be closed, rather than relying with ob_get_level a code can be processed with ob_list_handlers() which indicates whether outup_buffering (output_buffering INI ALL or ob_start with or without callback) is in use Only one compression buffer can exist at a time.
     5ob_end_flush() can return false and issue Notice when something goes wrong. the zlib buffer cannot be closed, rather than relying with ob_get_level() a code can be processed with ob_list_handlers() which indicates whether outup_buffering (output_buffering INI ALL or ob_start with or without callback) is in use Only one compression buffer can exist at a time.
    56With zlib.output_compression enabled, what does ob_list_handlers() return? please you can do a test because I can't but I would like assistance in the solution.