Hi,
You have a plug-in or theme generating this warning:
Invalid argument supplied for foreach() in <b>/home/themusic15pt/public_html/wp-admin/includes/plugin.php</b> on line <b>1445</b>
(although the warning is in WordPress core, this isn’t a WordPress bug). Because you’re error logging is configured to print warnings to the page, it’s corrupting the ajax response.
I’d recommend you suppress warnings on production sites – but equally, plugins shouldn’t cause warnings to be created. So you may first want to try and identify the plug-in and tell the developer.
But in any case you may want to ensure WP_DEBUG
is set to false
, and if it is, suppress error output by adding the following to the top of your wp-config.php:
error_reporting(0);
(Just suppressing errors/warnings is not good either, it’s sort of papering over a crack: ideally you would monitor and fix errors/warnings on a staging site).