you’ll find that menu in the upper right corner of the admin screen.
hope you fond it.
but have no idea where to find the menu items (MU Plugin menus) that used to appear under ‘Super Admin’.
those plugins will need to be upgraded because of the new menu structure. some will have disappeared, some will have jumped to the regualr site’s menus under Tools.
If they need… they need upgrading.
I have a similar issue, after upgrading to 3.1, I am not able to access the network admin menu. When I click on it, it takes me to login page again and never allows me to access the network admin.
Any help would be appreciated.
Fahd
fahdi: you should start a new topic; you’ll generate more replies that way, given that your issue is different than this topic’s.
Thanks Tim
I see it was being caused by some lines in
define(‘WP_DEBUG’, false);
define(‘WP_ALLOW_MULTISITE’, true);
define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, false );
$base = ‘/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘www.rd360.com’ );
define( ‘PATH_CURRENT_SITE’, ‘/’ );
define( ‘SITE_ID_CURRENT_SITE’, 1 );
define( ‘BLOG_ID_CURRENT_SITE’, 1 );
I removed a few lines from above and now it works with the following lines
define(‘WP_DEBUG’, true);
define(‘WP_ALLOW_MULTISITE’, true);
define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, false );
$base = ‘/’;
define( ‘PATH_CURRENT_SITE’, ‘/’ );
Still no clue what was the actual issue.
I wonder where did the network link in tools is gone, we could get the wp-config file changes and .htaccess chnages from there. Not anymore.
Regards,
Fahd Murtaza
I wonder where did the network link in tools is gone, we could get the wp-config file changes and .htaccess changes from there. Not anymore.
It’s under Network Adfmin after the network is enabled. this line:
define(‘WP_ALLOW_MULTISITE’, true);
allows it to show.
Thanks
my wp-config has this code
define(‘WP_DEBUG’, false);
define(‘WP_ALLOW_MULTISITE’, true);
define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, false );
$base = ‘/’;
define( ‘PATH_CURRENT_SITE’, ‘/’ );
which means it should show up. I have the network admin link on top but can’t see the old blog settings page which gave the .htaccess rewrite rules and wp-config file changes like AUTH_KEY.
define(‘WP_DEBUG’, false);
this part has nothing to do with multisite, by the way.
I have the network admin link on top but can’t see the old blog settings page which gave the .htaccess rewrite rules and wp-config file changes like AUTH_KEY.
The network setup did not give key and salt settings. those are different.
look under /wp-admin/network/setup.php
yeah I know about
define(‘WP_DEBUG’, false);
I just copied the whole code fragment here.
Thanks, I wrote the whole url i.e
http://domain.com/wp-admin/network/setup.php
and it showed me the link
So I get it now. Its under “Settings >> Network Setup” menu.
Thank you so much for your help.
[removed URLs]
Thanks again, you have been a great help.