• Resolved Bernard_F

    (@bernard_f)


    After automatic upgrade to 4.4.2, multisite administration dashboard cannot access to dashboard of secondary site. Chrome returns “Too Many Redirect error message”. The primary site works fine, secondary site display is corrupted due to images and css not found.

    Problem remains after disabling all plugins.
    The web site is hosted on server running php 5.4

Viewing 15 replies - 1 through 15 (of 18 total)
  • Hello team.
    I have a situation with wordpress 4.4.2 update; The desktop management does not work for MU, Someone else has a similar situation with the new update?

    Problem remains after disabling all plugins. I working whith DMS Framwork

    Al parecer el problema se encuentra en el plugin WP MU Domains; tu usas este plugin?

    Thread Starter Bernard_F

    (@bernard_f)

    The problem has been fixed, by adding a 2nd .htaccess in the ./wordpress directory under root of the site. It seems 4.4.2 reacts differently to .htaccess rewrite rule than previous wordpress release and that this impacts the multisite implementation.

    Hi Bernard_F,
    Since the recent update 4.4.2, my multisites have lost plugin directory tab, access and other admin navigation disruption (can’t see or access usual plugins)

    Your fix creates the following issue for my situation:
    I already have an .htaccess file
    I also have a .htaccess.ninjaxxxxx file for the ninja firewall plugin I use.

    Now you say to “add” another .htaccess file – do you mean:
    To place a new standard .htaccess file named ?
    Or to replace the original .htaccess file with a new non-modified one?

    Or what exactly? Thank you and anyone else for your valued contributions.

    Thread Starter Bernard_F

    (@bernard_f)

    In my site, WordPress is installed in a subdirectory named wordpress. In root directory I have a .htaccess with the following rule to convert root url to wordpress. The “/” before wordpress is needed with 4.4.2. That’s a change.

    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^(www.)?mysite.com$
    RewriteRule ^(/)?$ /wordpress [L]

    Then in /wordpress subdirectory, I have created a .htaccess file which is the standard WordPress one for 4.4.2. No additional rule is needed and it works fine now. Without this file in /wordpress subdirectory I had many problems with multisite.

    I hope this can give some ideas to track your problem.

    My .htaccess file looks like this:

    RewriteEngine On
    RewriteBase /wordpress/
    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]

    Are there any issues anyone can see for a 4.4.2 Multi-site enabled install?

    Yes, mycbhcomwebsites,

    Both my two multisites stopped to work, since the paths to CSS, JS and Images adds with /site-name/ in URL.

    Someone resolved this?

    Having the same issues as silviog … cannot access site dashboards (Too Many Redirect error message) css and js not working on themes

    I changed a line in htaccess and the things were ok last week, but today again we have a big problem caused by this upgrade.
    Now I can’t even enter in admin!

    Anyone?

    Thread Starter Bernard_F

    (@bernard_f)

    Share you htaccess and folder structure, so we can have a look

    guys someone delete my post rather helping me unbelievable, I cant access multisite network admin can someone help me in this regard
    will be thank full below is my htaccess

    RewriteEngine On
    RewriteBase /wordpress/
    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]

    a4aly, you can quickly resolve this removing ^ from these lines
    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]

    But will mean another permalinks problems. This is my problem now.
    Fist level site.com/content works perfectly, but second level site.com/content-type/content or /category/cat-name doesn’t work.

    My htaccess bellow, if someone could help us:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    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-(login|content|admin|includes).*) /$2 [L]
    RewriteRule ([_0-9a-zA-Z-]+/)?(.*\.php)$ /$2 [L]
    RewriteRule . index.php [L]
    </IfModule>

    thanks silviog but yet its not working ??

    OK, I did some testing and comparative multisite installs. it seems that either a hardened username and/or the installs including softaculous loginizer plugin, and settings for auto upgrade and all such pre-install options causes the break in my case.

    I will attempt new installs adding options one by one and report back as to which add-on reproduces the break.

    Quickest fix is to export your pages and posts for each site/sub-site and do a fresh install without any add-on options, add your sub-sites and Import your posts and pages again.

    This multisite is still a blast! I’m sorry to go to that… problem in admin urls here, following

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘4.4.2 broke multisite dashboard’ is closed to new replies.