• Hi all,

    I followed all the instructions to the letter for my multisite install. Thought all was going well until I attempted to login this morning and I’m stuck in a redirect loop on my login page.

    I’ve tried:
    – Deactivating WP Super Cache
    – Clearing all caches and cookies (browser & site)
    – Following the instructions on the post here
    – Following instructions on the post here

    The only thing that seems to work is deleting this from my wp-config file, but obviously that’s not ideal. this is my current wp-config:

    /* Multisite */
    define('WP_ALLOW_MULTISITE', true);
    
    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', true);
    define('DOMAIN_CURRENT_SITE', 'juiceandsmoothierecipes.com');
    define('PATH_CURRENT_SITE', '/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);
    
    define('COOKIE_DOMAIN', 'www.juiceandsmoothierecipes.com');
    
    define('ADMIN_COOKIE_PATH', '/');
    define('COOKIE_DOMAIN', '');
    define('COOKIEPATH', '');
    define('SITECOOKIEPATH', '');
    
    /* That's all, stop editing! Happy blogging. */

    and my htaccess:

    SuPHP_ConfigPath /home/cortjohn
    <IfModule mod_rewrite.c>
    
    # BEGIN WordPress
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # add a trailing slash to /wp-admin
    RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
    RewriteRule ^(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]

    Was wondering if anyone might have ideas of where I’ve gone awry. Grateful for any help.

    Cheers,

    Sharon

Viewing 1 replies (of 1 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    define(‘DOMAIN_CURRENT_SITE’, ‘juiceandsmoothierecipes.com’);

    […]

    define(‘COOKIE_DOMAIN’, ‘www.juiceandsmoothierecipes.com’);

    Why are those www and non www? They should be the same.

Viewing 1 replies (of 1 total)
  • The topic ‘Redirect Loop After MultiSite Install’ is closed to new replies.