Network setup tab is not shown under Tools

I’m trying to create a multisite so I did the necessary steps:

  1. Created a wildcard subdomain
  2. Backed up of course files wp-config.php and .htaccess
  3. Edited the config file with adding line define('WP_ALLOW_MULTISITE', true); before the line “…Happy blogging..

And now I cannot continue executing the following steps since the Network setup is not appearing under tools.

Related posts

6 comments

  1. You may want to try putting the line define( 'WP_ALLOW_MULTISITE', true ); somewhere near the topic your wp-config.php file. Also make sure you don’t have anything like // or anything like on the same line as it may comment out the define statement.

    Source: http://codex.wordpress.org/Create_A_Network “Step 2: Allow Multisite “

  2. For me, the issue was that the single quotes got messed up somehow when I copy and pasted that chunk of

    define(‘WP_ALLOW_MULTISITE’, true);

    Took me a while to notice the single quotes around WP_ALLOW_MULTISITE were not the same as the ones in the rest of the config file. Deleted and added proper single quotes and refreshed my page in the web browser and then I had the Network Setup option.

  3. I was experiencing the same thing. My fix was to actually type out the

    define(‘WP_ALLOW_MULTISITE’, true);

    line — instead of copying and pasting the line. Once I did this the Tools>Network option appeared.

  4. I don’t know if this was your issue, but I’ll chime in here and report what solved this issue for me:

    This process was started and not finished in our instance. I needed to go back to the aforementioned screen and copy the .htaccess content that was provided for my environment. I tried commenting out the define’s that we manually put in wp-config.php, already. Once I did that, the Network tool option reappeared.

    Hope that helps others.

  5. Similar to @AndrewR I had to replace quotes and spaces from what I copied from the WordPress Website. Maybe due to working on/in Windows and transferring to Linux.

Comments are closed.