• Hi,
    I’m trying to set up multiple networks on my wordpress install.
    I’ve set up my wordpress for multisite , and then installed the WP Multi Network plugin

    MultiSite works and I can create new sites as subfolders, but I want to have new networks for my domains.

    Whenever I try and create a new network, I just get an error: Network not created.
    There’s no other information and I can’t find any logs.

    I followed the instructions and commented out DOMAIN_CURRENT_SITE line by doing

    /**define(‘DOMAIN_CURRENT_SITE’, 123.456.0.1);**/

    So as far as I can tell I’ve followed the steps exactly.
    Any ideas?

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • There are a few other important settings to have in your wp-config.php, i’m assuming you have done that already but lets double check:

    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', false);  (You probably need true here)
    $base = '/';
    define('DOMAIN_CURRENT_SITE', 'example.com');
    define('PATH_CURRENT_SITE', '/');
    ...
    ...
    define('WP_ALLOW_MULTISITE', true);
    renatofrota

    (@renatofrota)

    Most users just overlook the 1st field on network creation form: Network name.

    Re-read the form carefully and you will find it ??

    Thread Starter dagmx

    (@dagmx)

    Hey sorry didn’t see the replies. Email spam filter caught the first one.
    @renatofrota i’ve entered all the fields, including network name.
    @agrajagco yes my settings match that.

    Anyway I gave up and just did multisite instead of multidomain. seems to be working fine, so I’ll just leave it at that.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Cannot create Networks. No logs?’ is closed to new replies.