如何修复ob_end_flush()无法发送zlib输出压缩(1)的缓冲区?

时间:2020-03-23 作者:Bené Mota

以下代码显示在“我的管理”页面的底部:

ob_end_flush(): `failed to send buffer of zlib output compression (1) in /home/benemota/public_html/wp-includes/functions.php on line 2619`
第2619行:

function wp_ob_end_flush_all() {
    $levels = ob_get_level();
    for ( $i = 0; $i < $levels; $i++ ) {
        ob_end_flush();
    }
}
我已经禁用了所有插件,以查看其中一个插件是否有问题,但它仍在继续。

还有一个细节,当我点击任何插件时,我的管理面板保持空白,页脚中有错误代码

enter image description here

1 个回复
SO网友:Shaon H

使用代码段添加PHP行。

remove_action( \'shutdown\', \'wp_ob_end_flush_all\', 1 );
代码段链接https://en-ca.wordpress.org/plugins/code-snippets/

相关推荐

Bootstrap在管理菜单页面上不起作用-如何覆盖wp-admin样式?

我正在构建一个插件,我使用bootstrap来设置它的样式,但我注意到一些组件样式不能正常工作。有人在博客中建议使用wp_deregister_style(\'wp-admin\'); 哪一个did 修复我的问题,但破坏了wp管理页面的其余部分。有没有办法覆盖加载到wpbody内容中的css?