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.

6 Answers
6

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 “

Leave a Comment