Hi guys
Thanks in advance for your advice.
One of my sites I’m working on is getting continuous errors:
- VIA httpdocs/wp-includes/functions.php referencing the line referring to the following:
/**
- Flush all output buffers for PHP 5.2.
- Make sure all output buffers are flushed before our singletons are destroyed.
-
@since 2.2.0
*/
function wp_ob_end_flush_all() {
$levels = ob_get_level();
for ( $i = 0; $i < $levels; $i++ ) {
ob_end_flush();
}
}
- Fatal error: Allowed memory size of 1xxx bytes exhausted
I’ve tried:
- deactivating and reactivating plugins to see if there is a conflict
- adding the following to the wp-config:
define( ‘WP_MEMORY_LIMIT’, ‘256M’ );
define( ‘WP_MAX_MEMORY_LIMIT’, ‘512M’ );
No luck resolving just yet.
Hope you can help me.
Kind regards,
Claire