Quote
The menu item to set up the network is hidden by default, so we have to allow it to be shown. Open up
your wp-config file right on the server, or download it, edit it and re-upload. You'll be adding this line:
define('WP_ALLOW_MULTISITE', true);
Put this line somewhere in the middle of the wp-config.php file, not at the top or bottom. At the bottom
is under the /* That's all stop editing */ area and anything new under there will not be read by
WordPress.
If you are copy-pasting from Windows, please make sure the quotes do not turn into curly quotes like
“. You want these ones: ' Otherwise, the line will not be read and you won't see the Network menu
item. This define statement's sole purpose is to show us the menu item. That's it.
Save the wp-config.php file, go to the admin area of WordPress and you'll see the Network menu item
under Tools. Click It
your wp-config file right on the server, or download it, edit it and re-upload. You'll be adding this line:
define('WP_ALLOW_MULTISITE', true);
Put this line somewhere in the middle of the wp-config.php file, not at the top or bottom. At the bottom
is under the /* That's all stop editing */ area and anything new under there will not be read by
WordPress.
If you are copy-pasting from Windows, please make sure the quotes do not turn into curly quotes like
“. You want these ones: ' Otherwise, the line will not be read and you won't see the Network menu
item. This define statement's sole purpose is to show us the menu item. That's it.
Save the wp-config.php file, go to the admin area of WordPress and you'll see the Network menu item
under Tools. Click It
However, if you follow the directions EXACTLY as they are written, when you follow them, create the .htaccess file, and make edits to wp-config.php Then Click Login on the Network setup, you are supposed to see a "SuperAdmin Panel" - You will NOT SEE this panel, unless you follow these instructions:
Quote
I finally found the shXt problem caused the super admin no show, it is because the steps first ask you to add a line :
define('WP_ALLOW_MULTISITE', true);
and then after you enable the network, it ask you to add some more lines:
and the first one is:
define( 'MULTISITE', true );
They looks very alike and I thought I have already add that one, and pass that line.
Suggest move
define( 'MULTISITE', true );
to second line
define('WP_ALLOW_MULTISITE', true);
and then after you enable the network, it ask you to add some more lines:
and the first one is:
define( 'MULTISITE', true );
They looks very alike and I thought I have already add that one, and pass that line.
Suggest move
define( 'MULTISITE', true );
to second line
So, to make this work, do this:
define('WP_ALLOW_MULTISITE', true);
define( 'MULTISITE', true );
ADD these two lines THEN follow the rest of the instrructions the way thay are written, and you will see the Superadmin Panel - This information was MISSING from the instructions from the first link, and I followed the instructions exactly with bad results -added the define( 'MULTISITE', true ); to the secind line, edited the files as instructed, added the keys they wanted, and BOOM - all done!!
[NOTE: Please Note that you should NOT use Wordpad, Notepad or a Word Processor to edit these files. You can use Nano/Pico or Metapad] This is especially important if working on windows machines, because editing these with anything other then Metapad can muck them up and make them unusable.
I post this here for anyone else that may need it - something tells me I will need it later!!
Brian
This post has been edited by baker7: 29 October 2010 - 07:59 PM

Sign In »
Register Now!
Help

Back to top
MultiQuote
