• 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

Viewing 15 replies - 1 through 15 (of 26 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    I think the error is more to do with the changes you’ve made than WP itself, since you clearly have made a few. It’s more likely if you switched to the Twenty Eleven theme, the issues would also go away.

    Thread Starter Becki Beckmann

    (@becki)

    well … actually i didn’t do any changes at all! not one single bit!

    the sites use the default twenty ten theme … but i will give twenty eleven a try and will report back 😉

    thanks

    Thread Starter Becki Beckmann

    (@becki)

    so … just did what you told me. enabled the twenty eleven theme for the network. then enabled it on one mutlisite domain and the problem is still there!!

    if i click on the toggle thingy in the dashboard upper right corner ‘screen option’ or ‘help’ or on ‘howdy, username’ nothing is happening! the menus don’t collapse!

    so it is the same thing with theme twenty eleven.

    also i’m not sure how you could say that i clearly have made a few changes??

    i haven’t! just the standard twenty ten theme with ONE function in the functions.php file to remove this ‘quickpres’ widget as the problems go away after i did that

    hope this helps you guys to re-produce the issue

    thanks & fun
    becki

    Just want to say that I’m seeing the same problem on a site with a custom theme. I disabled all plugins and the problem was still there — also tried with several different browsers to make sure it wasn’t on my end. I have several WordPress sites but only upgraded one so far — I’m not going to mess with the others until I have this kink worked out.

    Thread Starter Becki Beckmann

    (@becki)

    yep … great … we got another one 😉 who can confirm that it has nothing to do with plugins or the different browsers

    abigailm … just put that piece of code into your functions.php in the theme. if there isn’t a functions.php file there yet then just create one and put that code in to remove the ‘quickpress’ widget and see if this helps. it did help on my sites and the errors were gone

    // 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' );

    please let me know if this improves things – thanks

    I’d add that I just tried disabling the quickpress widget as described in the first post — and it did NOT help. Still have the same problem – dashboard widgets not loading, and of course I can’t use the “screen options” on the main page to disable the widgets.

    Thread Starter Becki Beckmann

    (@becki)

    probably some other widgets are causing the problem?

    you can disable all widgets if you like. there is this global $wp_meta_boxes which you could have a look at to see which widgets are loaded. there are 2 kinds of widgets ‘normal’ and ‘core’. you could loop with foreach through the normal and core and then remove them one by one to see if removing widgets helps to improve things.

    have a look at the function below i used to figure out things ->

    function removeDashboardWidgets() {
    	// Globalize the metaboxes array, this holds all the widgets for wp-admin
    
    	global $wp_meta_boxes;
    
    	/*
    	foreach (array_keys($wp_meta_boxes['dashboard']['side']['core']) as $name){
    		echo ("<p>");
    		echo ($name);
    		echo("</p>");
    
    	}
    	*/
    
    	// Remove the quickpress widget
    
    	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
    
    	// Remove the incomming links widget
    
    	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
    	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);
    	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
    	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
    	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
    	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']);
    } 
    
    // Hoook into the 'wp_dashboard_setup' action to register our function
    
    add_action('wp_dashboard_setup', 'removeDashboardWidgets' );

    a var_dump($wp_meta_boxes) will probably also give you the info you need

    best of luck and please post your report here

    OK, that did work, so I’m doing some debugging to restore various functions one at a time and see what happens. I’ll report back.

    OK, all is well now, but in my case I need to disable the recent comments widget. That has to be done via your script, because if the comments widget is activated then the screen options drop down doesn’t work. But for me, everything else can be loaded and things work ok.

    The other interesting thing for me is that when I go to the comments page on the menu, the “screen options” and “help” also is disabled there, although there doesn’t seem to be any issue with other functionality. (It looks like I can edit, delete, etc.) I’m running a plugin called “Stop Spammer Registrations Plugin” that adds some extra spam checking/reporting options to the comment menu, but disabling that doesn’t make any difference.

    For what its worth, there are less than 30 comments overall on this blog — so its not as if I have an overwhelming number of comments to handle.

    Thanks again for your help. I think I’m going to take a go-slow approach on updating my other wordpress installations. Maybe I’ll do a clean test install somewhere on my server so I can get a better sense of what is caused by my installations and what might have something to do with my server setup.

    By the way, just to be clear — for me this is not a multisite installation – just the standard 3.2 dashboard. I do have several wordpress sites running on my server, but they are separate domains and separately managed. (Just adding this in case anyone else comes along with a similar issue)

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    becki, you SAID:

    then … i remembered that i did some custom modifications in the functions.php in the theme to disable displaying of the default widgets

    and

    i haven’t! just the standard twenty ten theme with ONE function in the functions.php file to remove this ‘quickpres’ widget as the problems go away after i did that

    That is the very nature of ‘Making changes’ 🙂 Yes, it’s ONE change, but it’s a change non the less.

    The basic rules of troubleshooting still apply: Turn off plugins, switch to the default theme. If the problem persists and it’s NOT reproducible on many other servers (two isn’t many), then it’s likely your server.

    Which is where we’re at now.

    Not being able to click on the dashboard links and have them function is indicative of an AJAX or Java issue. WordPress DID upgrade Java in the latest build AND dropped support for PHP 4.

    So first off, both of you make SURE you turned off ALL your plugins (yes, all, even the ones in mu-plugins). Yes, it sucks, but that’s how you have to debug.

    But, ipstenu, Becki was saying that the ONLY installation that worked for her was the one with the modification — not the unmmodified version.

    And I had the same problem — that’s how I found this thread, by Googling for a solution — and I started by disabling all plugins. With Becki’s help I’ve been able to narrow it down to an issue with the recent comments widget — that’s obviously the problem on my end, since disabling that turned out to be the fix when nothing else worked.

    Plus, I’m talking about a single user installation. I don’t think I have any mu-plugins, just the stuff I’ve put in myself.

    With your post I’m also going to double check to make sure that I’m running the latest version of Java on my browser, to rule out any problems stemming from a conflict there on my end, though I’m pretty sure that I’m current.

    So it is a big help to offer up suggestions for more debugging — but denying that there is a problem in the face of multiple reports doesn’t make sense.

    Thread Starter Becki Beckmann

    (@becki)

    hi abigailm

    you’re a star 😉

    So it is a big help to offer up suggestions for more debugging — but denying that there is a problem in the face of multiple reports doesn’t make sense.

    after the last reply from user ipstenu, which i actually didn’t find very helpful, i just couldn’t be bothered to send another reply … sorry

    i had the same impression of denying that there is a problem

    so thanks abigailm, i couldn’t have used better words 😉

    aehm …. by the way … i know my name becki is a bit confusing as most people think i’m female … hahaaa 😉 but the female becky is written with a ‘y’ and the male becki is written with an ‘i’, at least here in germany.

    well … i know, very confusing, but i got this nickname assigned by some friends of mine in the last couple of years

    here’s the actual proof being male -> http://beckspaced.com

    thanks again abigailm 😉

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    I was fairly sure I MIGHT be misunderstanding something, but I can only take what someone says. When someone says ‘I remembered I MADE a change…’ Had I known you were German, Becki, I’d have grabbed my girlfriend who has told me more than ones that tenses translate differently 🙂 I do apologize (and should remember that from my French class!).

    So it is a big help to offer up suggestions for more debugging — but denying that there is a problem in the face of multiple reports doesn’t make sense.

    I’m not denying, I’m saying that based on the small number (2, and yes, I AM all over these forums keeping track 😉 AND I’m on the forum mod mailing list where we talk about this stuff all day long ) of people with the errors, it’s MORE likely it’s something else.

    This is the voice of weary experience 🙂 Been doin’ this a while, hence the funny title. I do know what I’m talkin’ about here. If this really was a major bug with WordPress, you’d be seeing a LOT more people complaining. That we’re not is indicative.

    With Becki’s help I’ve been able to narrow it down to an issue with the recent comments widget –

    Are you talking about the default one that comes with WordPress? Themes can (and often do) change those on the backend.

    Becki disabled QUICKPRESS which is NOT the same as what you’re disabling.

    See? Even more differences!

    Browser java shouldn’t matter, BTW. Your PHP install being compiled correctly on the server, however, MAY cause the issue.

    Can either of you make a phpinfo page?

    http://codex.wordpress.org/User:Ipstenu/How_to_create_a_phpinfo()_page

    Sure — here it is:
    http://davismethods.info/phpinfo.php

    I upgraded my PHP about a month ago and I remember now that I had some questions about which PHP modules should be enabled, so perhaps that’s the source of the problem.

Viewing 15 replies - 1 through 15 (of 26 total)
  • The topic ‘Multisite Dashboard AJAX problem – solved – bug report?’ is closed to new replies.