If you’re hosting websites using WordPress MU (version 2.8.6) with the Domain Mapping Plugin installed you may have noticed a REALLY SLOW log in from the time you enter your credentials until the time you see the admin screen. If you have, try this:
-
Subscribe
-
Recently
The Simple Side

Here’s a good place to start. I’m an administrator for a WordPress MU installation. Today I tried to log into the main blog with my Site Admin account – the “super site account” that should be able to access all the blogs and sites – and discovered that my admin account was getting rejected. I would see a screen that just said “Cheatin Uh?”
When I tried to log into one of the “sub” blogs, I could get om but couldn’t see my “Site Admin” menu. (pause for groans and so forth). After A LOT of poking around online I found a few helpful tips that got me back on my feet. This is a problem in two acts.






Add links to a wordpress navigation menu
Someone asked me how to add links to the end of a WordPress (2.9) navigation menu. I looked for a plugin but it really wouldn’t work well as they’d hacked their theme code. I came up with this.
<?php function draw_navigation() { $links = array( 'Simple'=>'http://digitalsimple.info', 'Twitter'=>'http://twitter.com/DigitalSimple' ); ?> <ul id="nav"> <li <?php if(is_home()) { ?> <?php } ?>><a href="<?php echo get_option('home'); ?>/">Home</a></li> <?php wp_list_pages('depth=1&sort_column=menu_order&title_li=' ); foreach($links as $title=>$url) { echo '<li><a href="'.$url.'">'.$title.'</a></li>'; } ?> </ul> <?php } draw_navigation(); ?>I’ll get this into a plugin eventually.