• Hi Guys
    I’m running a website with a wp multi-site installation.
    I have over 120 sub-domains.
    I have recently upgraded to version 3.1.1 and I’ve noticed the the link to Pluins/Add New has gone. Disappear.
    See image here
    How can I fix it?

    Also I have lost my ‘Network’ menu and the links to the ‘Network Admin’ & Update Network also not working.

    Hope you can help

    Many thanks
    Amit

Viewing 12 replies - 1 through 12 (of 12 total)
  • Look for a link and/or slider menu in the upper right corner of your Dashboard (where it says “Hello, Amit!”). The network admin link has moved there.

    Thread Starter amitcohen

    (@amitcohen)

    Hi Tim
    Thanks for replaying.
    One of the problems is that clicking that link
    give me the error:
    <——–>
    The page isn’t redirecting properly
    Firefox has detected that the server is redirecting the request for this address in a way that will never complete.

    This problem can sometimes be caused by disabling or refusing to accept
    cookies.
    <——–>
    Must say i do accept cookies, so this is not the problem.

    Also,
    How do I get back the ‘Add New’ in the plugin menu on the sidebar?

    You don’t. It’s moved to Network admin. If you can’t get in there, you have a different issue.

    Does your domain use the www?

    Thread Starter amitcohen

    (@amitcohen)

    Hi Andrea
    This is a news to me, I didn’t knew about that.
    +
    Yes my site is with www.
    Is this is the problem? (or the solution?)

    I should add that I have made sub-domains as ‘Network Admin’.
    So there are few ‘Network Admin’, not just one.

    In my personal opinion, this should not affect the ability to access the ‘Network Admin’.

    All accounts with ‘Network Admin’ cannot access the ‘Network Admin’.
    But its only make sense as they are all referring to the same page.

    Or.. maybe I’m wrong here..

    If you search the forums you’ll se that super admins have had issues accessing the new Network Admin area that was implemented in 3.1. Yes, it was in the release notes.

    All of these users has issues with the www being stripped for the network admin address.

    Thread Starter amitcohen

    (@amitcohen)

    Hi Andrea
    So, in other words, there is no solution to this at the moment?

    No, there *is* a solution and it’s given in the other threads.

    Thread Starter amitcohen

    (@amitcohen)

    Hi Andrea,
    Thanks for that..
    Me just couldn’t find it, that why I’ve started this thread.

    Can you give me a link to a thread??

    Thanks,
    Amit

    Thread Starter amitcohen

    (@amitcohen)

    Thread Starter amitcohen

    (@amitcohen)

    It happen again, I can’t believe it!
    Now upgrading to 3.2 and the redirect issue is back.

    To fix the Network Admin redirect problem, I have override the file admin.php in the path /public_html/wp-admin/network
    Using this code:

    <?php
    /**
     * WordPress Network Administration Bootstrap
     *
     * @package WordPress
     * @subpackage Multisite
     * @since 3.1.0
     */
    
    define( 'WP_NETWORK_ADMIN', TRUE );
    
    /** Load WordPress Administration Bootstrap */
    require_once( dirname( dirname( __FILE__ ) ) . '/admin.php' );
    
    if ( ! is_multisite() )
    	wp_die( __( 'Multisite support is not enabled.' ) );
    
    if ( ! is_main_site() ) {
    wp_redirect( network_admin_url() );
    exit;
    }
    ?>

    It works!

    Your url has www in it, doesn’t it?

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Yeah, he has www.

    I think the ‘fix’ is to correct your site to remove www. from the URL?

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Lost my 'add new plugin' link’ is closed to new replies.