Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Same here… I am using a live WP MU install (3.9.1). Plugin has been network activated and I can access the plugin settings within each site, but error appears on all (regardless of theme), and no dialogue box appears.

    TonyMuller

    (@tonymuller)

    same problem, however the sites are not accessible.

    NS Cloner creates clone.www.mydomain.com but going there returns page not found. Removing the .www doesn’t work either

    I’ve also tried adding these lines to wp-config.php but it doesn’t seem to help:

    define(‘WP_HOME’,’http://mydomain.com’);
    define(‘WP_SITEURL’,’http://mydomain.com’);

    Thread Starter TonyMuller

    (@tonymuller)

    The wildcard subdomain has no redirection, and there are no add-on domains.

    Not that this should have any effect now that I have changed to sub-directory, but I just don’t understand why it’s not working…

    Thread Starter TonyMuller

    (@tonymuller)

    wp-config content:

    /* Multisite */
    define( 'WP_ALLOW_MULTISITE', true );
    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', false);
    define('DOMAIN_CURRENT_SITE', 'www.exampledomain.com');
    define('PATH_CURRENT_SITE', '/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);

    .htaccess content:

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

Viewing 4 replies - 1 through 4 (of 4 total)