I am unable to see it network admin link in a multisite blog. Can anyone tell me how to activate it again? I am logged in as super user. For the main blog I could see, I used to see the network admin link previously for any other blogs too if am logged in as super user but now I am unable to see. check the below images,
Before, I can see network for all sites if am logged in as super user
Now, I cannot see network admin link for any blogs
I am unable to see it network admin link in a multisite blog. Can anyone tell me how to activate it again? I am logged in as super user. For the main blog I could see, I used to see the network admin link previously for any other blogs too if am logged in as super user but now I am unable to see. check the below images,
Before, I can see network for all sites if am logged in as super user
Now, I cannot see network admin link for any blogs
Share Improve this question asked Feb 13, 2014 at 19:37 NEONEO 1332 silver badges7 bronze badges 5 |1 Answer
Reset to default 1The problem was that the username of the super admin was changed and this did not reflect in other blogs of the system. The below query solved my problem,
update wp_sitemeta set `meta_value` = 'a:1:{i:0;s:6:"adminusername";}' where `meta_key` = 'site_admins'
and
update wp_sitemeta set `meta_value` = '[email protected]' where `meta_key` = 'admin_email'
wp-config.php
multisite settings are still in tact, and so is your.htaccess
file. – Eric Holmes Commented Feb 14, 2014 at 16:19