• URL = job-essentials.com
    OS = Plesk onyx web host edition
    WP version = 4.7/4.8

    At present wether using the application install on Plesk Onyx or manually installing WordPress versions 4.7 or 4.8 on either sub domain or sub directory install I am getting a loop error when trying to access a network site dashboard. In addition to this any network site created doesn’t have any CSS or images. The wp-login.php page is also unavailable for network sites. The base install and dashboard are fine for everything this is purely on network created sites.
    This is a fresh install each time using the default theme. I have tried the following fixes to no avail:

    define(‘ADMIN_COOKIE_PATH’, ‘/’);
    define(‘COOKIE_DOMAIN’, ”);
    define(‘COOKIEPATH’, ”);
    define(‘SITECOOKIEPATH’, ”);

    Names and Id both match in the database and config

    Any help would be appreciated

    WPconfig is as follows

    define( ‘WP_ALLOW_MULTISITE’, true );

    define(‘MULTISITE’, true);
    define(‘SUBDOMAIN_INSTALL’, false);
    define(‘DOMAIN_CURRENT_SITE’, ‘job-essentials.com’);
    define(‘PATH_CURRENT_SITE’, ‘/’);
    define(‘SITE_ID_CURRENT_SITE’, 1);
    define(‘BLOG_ID_CURRENT_SITE’, 1);
    .htaccess file is as follows

    # BEGIN WordPress
    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]
    # END WordPress

  • The topic ‘Fresh multisite install loops and missing files’ is closed to new replies.