• As a caveat, I have been spending the last few hours going through the support forums to see if I can find a post with similar problems. I have found a few that had some good rec’s for fixups, but Im not entirely sure they are appropriate to my situation. I have also contacted moderators at the IRC, and some people on there were able to partially help me.

    I am working in the wake of a cock-up I made earlier today – in attempting to change https://www.gaslighhotel.net/dir into a straight https://www.gaslighhotel.net, I managed to mess up the look of the site to where all that showed up at the url was the link index. Via my host customer service, the change was successfully made to the url I wanted.

    However, when I began to use the Dashboard of the WP blog, I began noticing some bugs. One was that I am able to log INTO the dashboard at any time, but every time I wished to navigate away from the dashboard to get a visual of the site, I had to log back in or page backwards into the dashboard. I wouldnt think anything of this except that’s not the way it was set up before I goofed things up with the url change, and I rather liked having the admin menu at the top while working on the site. Now that’s gone. I approached some moderators on WP.org’s IRC page and they asked me to clear the cache, which I did, but nothing changed in regards to that.

    Further that, I can still access the dashboard of my SITE quite easily, but whenever I attempt to go into the Network Administrator, all I get is a 404 page. The moderator in the IRC recommended I remove all my plugins, but that is impossible to do at this point because I have to go into the Network Admin dashboard in order to do so. All I can do in the site dashboard is deactivate a plugin. So that’s my second problem.

    Third problem is I noticed in looking at my Jetpack statistics page, that March 10th’s talley for referrers came directly from WordPress itself! What does this mean? Is my site “leaking data” or is it vulnerable to hackers in spite of having Askiment as one of my plugins? Im very confused.

    Please understand I know very little about the kind of programming thats involved in sites like this. Any help you can provide would be greatly appreciated.

Viewing 15 replies - 1 through 15 (of 15 total)
  • Hi,

    Make sure you had made changes in wp-config.php for the path and in the options tables of all network websites.

    define( ‘WP_ALLOW_MULTISITE’, true );
    define(‘MULTISITE’, true);
    define(‘SUBDOMAIN_INSTALL’, true);
    define(‘DOMAIN_CURRENT_SITE’, ‘yousiteurl’);
    define(‘PATH_CURRENT_SITE’, ‘/’);
    define(‘SITE_ID_CURRENT_SITE’, 1);
    define(‘BLOG_ID_CURRENT_SITE’, 1);

    eg:

    wp_options
    wp_1_options
    wp_2_options and so on…

    And also there is one more table in which you have to make the change

    wp_site

    In this table you will have to change the value of the domain and its path.

    Please let me know if it works for you.

    Thanks

    Thread Starter Keeper2008

    (@keeper2008)

    Clarion Technologies, thank you so much for your reply. I have just realized I posted in the wrong topic! I will try your suggestions, but I think I may need to move my request to another topic.

    Thank you!

    Hello,

    i have the same problem, i have migrated a multisite that i created on localhost to ovh. I have followed in detail what is indicated on the web. I have full access to my two websites administration and they work well but i cannot access the dashboard of the network. When i click on “sites” on the top left i see only the main site and if i go into the network administration menu and clic on any item it tells me that the page was not redirected correctly. Idem if i try to access directly the /network/ directory which is in wp-admin.

    All this is working ok on my local host.

    can somebody help?

    Hi,

    Had you made changes in wp-config and all the database tables mentioned above in this post?

    hello, yes i did both the wp congif and ht access files modifications
    for the database i used Search-Replace-DB-master as recommended on the web. I tried also to update to wordpress 4.5.2 and it tried to access to the /network/ directory but does not seem to find it although it is in place in wp-admin.

    Hi,

    Had you made change in this table “wp_site”.

    This table contains only domain name without http and folder path.

    When you search replace the links with http are replace and the links without http are not replaced.

    I recommend you to check wp_site once more manually.

    Thanks

    Hello, i checked ww_site, in the domain box i have only the domain name calligrafee.com and in the path box i have a /

    thanks for your help

    i removed the / from the path box but no change

    thanks

    what i suspect is that i did not desactivate the plugins from both sites and network before transferring from localhost to ovh. I tried to desactivate them afterwards but it did change nothing. I looked in the tables of the database corresponding to the plugins but i see nothing wrong. I have tables for 404 to 301 and statpress.

    br, ms

    Hi,

    If you have done wp-config changes and all site url changes in database and still the network admin is not working then it is very hard to tell why it is not working without having a look at the website.

    The last thing I would recommend is check your rewrite base in .htacess file and path in wp-config.php and ww_site table. in both places the path must be same.

    And yes previously I had forgot to mention there is also two more table ww_sitemeta and ww_blog. In ww_sitemeta table also check the value of “siteurl” and in ww_blog check the values of “domain” and “path”.

    Please let me know if it works for your now.

    Thanks

    Hello, here is my .htaccess:
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]

    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ – [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]
    </IfModule>

    # END WordPress

    here is my wp_config:

    /* Multisite */
    define(‘WP_ALLOW_MULTISITE’, true);
    define(‘MULTISITE’, true);
    define(‘SUBDOMAIN_INSTALL’, false);
    define(‘DOMAIN_CURRENT_SITE’, ‘www.calligrafee.com’);
    define(‘PATH_CURRENT_SITE’, ‘/’);
    define(‘SITE_ID_CURRENT_SITE’, 1);
    define(‘BLOG_ID_CURRENT_SITE’, 1);
    define(‘WP_HOME’,’https://www.calligrafee.com&#8217;);
    define(‘WP_SITEURL’,’https://www.calligrafee.com&#8217;);

    in wp_site i have domain: calligrafee.com path: /

    in wp_sitemeta i have site_name réseau calligrafee, siteurl : https://www.calligrafee.com

    in wp_blog i have two lines for my two blogs with id 1 and 3 respectively (no id 2):
    domain: calligrafee.com path:/
    domain calligrafee.com path /en/

    can this help? thanks

    Hi,

    Your htaccess and wp-config.php files seems to be fine.

    I have just noticed that on some table your site URL contains www and in some it does not.

    In one of the old multi-network site I had face similar issue because of the www parameter.

    I would suggest you to make the following changes and see if it works. Please do take a database backup first.

    In wp_site table set the domain value to https://www.calligrafee.com

    And in wp_blog set domain for blogs with id 1 and 3 to https://www.calligrafee.com and https://www.calligrafee.com

    Also comment out the following lines in the wp-config.php files as they are no longer needed.

    define(‘WP_HOME’,’https://www.calligrafee.com&#8217;);
    define(‘WP_SITEURL’,’https://www.calligrafee.com&#8217;);

    Please let me know if you problem is solved now.

    Thanks

    Thread Starter Keeper2008

    (@keeper2008)

    Thank you, Clarion, for all your help! I decided to erase the whole thing and start over from scratch. It seemed to be easier that way.

    Hi,

    Yes that would be better.

    Thanks

    I am having the same issue. I can log into my my multi site fine but when i try and access network admin it prompts me to login and it keeps going around in circles. Need assistance please.

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘Unable to access Network Admin dashboard’ is closed to new replies.