This doesn’t seem related to my plugin at all, did you update some other plugin or theme perhaps?
We don’t use wp_suspend_cache_addition() and neither wp_ob_end_flush_all
Only things I can tell you is:
Does it work when you disable the html minification option on the plugin settings page (that’s the only thing that uses ob_flush, but it’s not the same one shown on your error)?
Does it work when you disable my plugin completely?
—
Edit: It seems that the wp_suspend_cache_addition is used on wp super cache plugin, if not please get me a full list of plugins and theme used on your site, as well as your php and wordpress version.
-
This reply was modified 9 years, 4 months ago by
Raul P..
-
This reply was modified 9 years, 4 months ago by
Raul P..
On previous versions, I had error_reporting(0), but I realized that this would prevent showing any possible errors for all plugins.
I removed that option to hide the errors site wide so now other plugins will report as usual and you may see errors with those.
If you want to track down which one, simply disable one by one until you find it.
Also add define( 'WP_DEBUG', true ); to your wp-config.php file to see other hidden errors with other plugins or themes.
https://codex.wordpress.org/Debugging_in_WordPress
Let me know if you sort it out.