Title: Network settings missing
Last modified: August 19, 2016

---

# Network settings missing

 *  [cinematic](https://wordpress.org/support/users/cinematic/)
 * (@cinematic)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/network-settings-missing/)
 * I have installed a brand new wp 3.0 alpha and can’t find any link to the network
   settings …
    tools lists only import and export. Is it only me?

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/network-settings-missing/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/network-settings-missing/page/2/?output_format=md)

 *  [MichaelH](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419082)
 * No that was intentional. You need to add this to your wp-config.php
 * `define('WP_ALLOW_MULTISITE', true);`
 * See [http://lists.automattic.com/pipermail/wp-testers/2010-March/012212.html](http://lists.automattic.com/pipermail/wp-testers/2010-March/012212.html)
 * [moderated code fixed]
 *  Thread Starter [cinematic](https://wordpress.org/support/users/cinematic/)
 * (@cinematic)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419234)
 * Ah … there it is … thanks a lot for this info! I didn’t take notice of that and
   wondered where the network tab was …
 * (maybe it would be a good idea to include this tag in config.php so that the 
   line only needs to be set true in order to be used?)
 *  Thread Starter [cinematic](https://wordpress.org/support/users/cinematic/)
 * (@cinematic)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419237)
 * I just added the tag to config.php and it didn’t change anything at all. Only
   after an automated update to the latest nightly build the network tab showed 
   up. Could it be that the tag only works if being set _before_ installation? Then
   I can imagine that this change will cause some confusion …
 *  [MichaelH](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419280)
 * `WP_ALLOW_MULTISITE` wasn’t available via the nightly build until late March 
   9th (or early March 10, 2010). Prior to that it was `WP_ENABLE_MULTISITE` — but
   they renamed it to `WP_ALLOW_MULTISITE` — that’s what the testers thread was 
   all about.
 *  [ruhig](https://wordpress.org/support/users/derx/)
 * (@derx)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419471)
 * Parse error: syntax error, unexpected ‘:’ in /usr/www/users/ooooo/ooo/wp2/wp-
   config.php on line 36
 * What did I do wrong?
 * Is it to late after the Installation?
 *  [kpdesign](https://wordpress.org/support/users/kpdesign/)
 * (@kpdesign)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419472)
 * Open wp-config.php and change the line MichaelH had you add to this:
 * `define('WP_ALLOW_MULTISITE', true);`
 * The error is due to a colon at the end of that line – should be a semi-colon.
 *  [MichaelH](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419473)
 * Good catch kpdesign. I will edit that code above.
 * Thanks.
 *  [ruhig](https://wordpress.org/support/users/derx/)
 * (@derx)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419491)
 * trying the latest trunk define(‘WP_ALLOW_MULTISITE’, true);
    is not working, 
   I dont get the network possibility.
 *  [massayoshi](https://wordpress.org/support/users/massayoshi/)
 * (@massayoshi)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419510)
 * I did just like it says:
 *     ```
       /** MULTI USER! */
       define('WP_ALLOW_MULTISITE', true);
       define('VHOST', 'no');
       $base = '/';
       define('DOMAIN_CURRENT_SITE', 'my.domain.com');
       define('PATH_CURRENT_SITE', '/');
       define('SITE_ID_CURRENT_SITE', 1);
       define('BLOG_ID_CURRENT_SITE', 1);
       define('WP_ALLOW_REPAIR', true);
       ```
   
 * But when I refresh the admin, it says the db needs to be repaired, when I comment
   the VHOST line, it goes back to normal but nothing happens.
 *  [pswheeler](https://wordpress.org/support/users/pswheeler/)
 * (@pswheeler)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419511)
 * I get the same error as him. I do not know what is wrong yet.
 *  [Andrea Rennick](https://wordpress.org/support/users/andrea_r/)
 * (@andrea_r)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419512)
 * Don’t put all that in there at once.
 * Put define( ‘MULTISITE’, true ); in your config file FIRST.
 * Then go visit the Network menu.
 *  [pswheeler](https://wordpress.org/support/users/pswheeler/)
 * (@pswheeler)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419513)
 * ok now i get can not conect to db. and all the info is right.
 *  [Elina Miller](https://wordpress.org/support/users/devravinder/)
 * (@devravinder)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419571)
 * define(‘WP_ALLOW_MULTISITE’, true);
    Adding this line in wp-config does not let
   network option under tools…in wordpress 3
 *  Moderator [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [15 years, 8 months ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419572)
 * It should. Did you but it above the ‘stop editing here’ line?
 *  [Elina Miller](https://wordpress.org/support/users/devravinder/)
 * (@devravinder)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/network-settings-missing/#post-1419573)
 * network link appeared
 * i put this line before
    /* That’s all, stop editing! Happy blogging. */

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/network-settings-missing/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/network-settings-missing/page/2/?output_format=md)

The topic ‘Network settings missing’ is closed to new replies.

 * In: [Alpha/Beta/RC](https://wordpress.org/support/forum/alphabeta/)
 * 16 replies
 * 9 participants
 * Last reply from: [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * Last activity: [15 years, 8 months ago](https://wordpress.org/support/topic/network-settings-missing/page/2/#post-1419574)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
