The MU forums have moved to WordPress.org

Wordpress is Slow (45 posts)

  1. CoreyCampbell
    Member
    Posted 16 years ago #

    I just took mubar out.

  2. dsader
    Member
    Posted 16 years ago #

    I'd guess mubar plugin, then.

    UPDATE: Yup.

    	<link rel="stylesheet" type="text/css" href="http://home.mkcproductions.com/mubar/styles.css" media="screen" />
        <script type="text/javascript" src="http://home.mkcproductions.com/mubar/dhtml-menu.js"></script>
    

    Both URLs puke out the blog subdomain rather than the home subdomain. You moved the files, change your paths in the plugin.

  3. dsader
    Member
    Posted 16 years ago #

    Edit your header.php to remove the link and script to mubar.

  4. dsader
    Member
    Posted 16 years ago #

    Poof. 3 times faster, now.

  5. CoreyCampbell
    Member
    Posted 16 years ago #

    So are you still getting that looped content?

  6. dsader
    Member
    Posted 16 years ago #

    All activity is normal, looks fine to me, loads fine.

  7. CoreyCampbell
    Member
    Posted 16 years ago #

    Yeah I'm getting that too =) ... so just the .js and .css file were doing that? Funny enough those were pointing to somewhere that didn't exist... :( oops...

  8. dsader
    Member
    Posted 16 years ago #

    Welcome back.

  9. CoreyCampbell
    Member
    Posted 16 years ago #

    Thanks for the help... normality... and relief...

  10. ontiltcasinogear
    Member
    Posted 16 years ago #

    add http://www.yourhostname.com to the /etc/hosts file. I guess WP 2.1 has some sort of reverse DNS code in it.

    it works with the latest version as well.

  11. CoreyCampbell
    Member
    Posted 16 years ago #

    Where are those located?

  12. bechster
    Member
    Posted 15 years ago #

    Hi CoreyCampbell (and others)!

    I had the same problem and it drove me crazy, but I think I just finally found a solution.

    Try inserting the following piece of code in your theme's functions.php file:

    <?php remove_action('wp_head', 'WPAdminBar'); ?>

    Works for me. Thank you everyone for leading me in the right direction!

  13. VentureMaker
    Member
    Posted 15 years ago #

    bechster, so, your WPMU works quicker with this?

  14. lunabyte
    Member
    Posted 15 years ago #

    This is available as of 2.7, in wp-config:

    // Uncomment to disable the site admin bar
    //define( 'NOADMINBAR', 1 );

    A bit easier than removing an action.

  15. bechster
    Member
    Posted 15 years ago #

    @VentureMaker: It certainly does. Before I did this, it took about 1½ minute to load any blog except the default one after I upgraded to 2.7. I'm using virtual folders instead of subdomains and it turned out that wp-admin-bar referred to a javascript file in the virtual folder for each blog, which obviuosly doesn't exist. Hence the long loading time which eventually times out, loading the rest of the page. Maybe this is subject to a bug fix in a later version?

    @lunabyte: Thanks, I hadn't noticed that. Seems like a lot better solution. Definitely going to try that out tomorrow.

About this Topic

  • Started 16 years ago by CoreyCampbell
  • Latest reply from bechster