Hi socialdzine. Maybe one of the articles in this search will help narrow it down.
Have you updated WordPress, all themes and plugins or are you running some old versions.
yes, I’m running current versions of everything. That’s where the process of elimination came in. Down to bare bones and still having the issue on 5 sites. Different hosts, different themes. SAME ISSUE
Are you getting an error message? If so, what is it?
What happens if you disable the remaining plugins on one of the sites? Does that fix the issue?
This may be related. Since upgrading to 4.5 the theme customiser crashes on at least some themes. On the WP Simple theme is crashes with:
Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 49152 bytes) in /wp1/wp-admin/menu.php on line 97
Didn’t happen under the old version. Quite a serious error for a new release IMHO.
@delahoc: your issue is not related, and you’re wasting people’s time by jumping other threads with your issue.
Out of memory errors are common and are host-related: https://ww.wp.xz.cn/search/Fatal+error%3A+Allowed+memory+size?forums=1
See https://codex.ww.wp.xz.cn/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Well, my blog uses this on the front-end:
Memory used: 25,690,112 bytes.
Peak Memory used: 25,690,112 bytes.
This on the admin dashboard:
Memory used: 29,097,984 bytes.
Peak Memory used: 29,097,984 bytes.
I use this bit of code:
###########################################################################################
function memory_stats()
{ // BEGIN function memory_stats
echo '<p style="clear: both;">Memory used: '. number_format(memory_get_usage(true)). ' bytes.<br />';
echo 'Peak Memory used: '. number_format(memory_get_peak_usage(true)).' bytes.</p>';
} // END function memory_stats
add_action('in_admin_footer', 'memory_stats');
You can call memory_stats() somewhere in your theme’s footer.php to see what the front-end uses. I did happen to notice with my blog that after the webhost updated to PHP 5.4, it used much less memory than it had been.
Sorry, but could you explain me where did you post taht code? im having the same problem