Multisite Dashboard AJAX problem – solved – bug report?
-
hello there,
did the upgrade from 3.1.4 to 3.2 a few hours ago. i’m running a multi site with about 10 TLD domains in a sub directory structure and the MU domain mapping plugin plus a few other plugins.
when logging in as the network admin or under the default multi site i didn’t experience any problems and all was working fine.
but then a customer contacted me that his site was no longer working. the customer experienced problems in the dashboard not being able to click the screen options toggle thingy. also some widgets in the dashboard didn’t load the content and the widgets always displayed ‘loading’
so … did a check with the customer login and experienced the same errors. then did a google search about that error and found some solution? thing with another plugin called ‘load google scripts’ or something like that, supposing that this is some sort of jquery problem and to get all the javascripts from google instead of loading the defaults shipped with wordpress.
but installing that plugin and activate it in the customer domain didn’t also change a thing. problem was still there! then i even found a code modification (to load some older jquery ib instead of the newest one) for that ‘load from google’ plugin but even that didn’t help ;-(
well … then i browsed through the dashboard of all installed domains and always had the same issue with AJAX in the dashboard … except at one domain! there all was working fine … i could toggle the screen option thing via javascript and dashboard widgets were loading content instead of just displaying ‘loading’
then … i remembered that i did some custom modifications in the functions.php in the theme to disable displaying of the default widgets
// Create the function to use in the action hook function removeDashboardWidgets() { global $wp_meta_boxes; // Remove the quickpress widget unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']); } // Hoook into the 'wp_dashboard_setup' action to register our function add_action('wp_dashboard_setup', 'removeDashboardWidgets' );
so … by just removing this quickpress widget all the errors were gone. no more problems with the screen options toggle thing … widgets are loading content like they are supposed to do ??
looks like that this quickpress widget is causing errors as all works fine without this widget.
well … thought i post this here if others are running into the same problems … probably this helps someone out there running a multi site install.
should i also file a bug report? or is this behavior not considered a bug? can someone recreate the same problem and fix written here?
please let me know if this helps someone ??
greetings & fun
becki
- The topic ‘Multisite Dashboard AJAX problem – solved – bug report?’ is closed to new replies.