First of all – Finally Installation success. Yahoo! 🙂
—-
YES, I’m going through the Network menu item and clicking the button.
I always putted the multsite constants in the config file at the BOTTOM of the file because if I putting in the MIDDLE, later I can’t login, my password not valid.
Now I realize…
The multsite constants must be putted in the MIDDLE in this sequence:
define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', true );
$base = '/';
define( 'DOMAIN_CURRENT_SITE', 'www.website.com' );
define( 'PATH_CURRENT_SITE', '/' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );
define( 'AUTH_KEY', 'generated_AUTH_KEY' );
define( 'SECURE_AUTH_KEY','generated_SECURE_AUTH_KEY' );
define( 'LOGGED_IN_KEY', 'generated_LOGGED_IN_KEY' );
define( 'NONCE_KEY', 'generated_NONCE_KEY' );
define( 'AUTH_SALT', 'generated_AUTH_SALT' );
define( 'SECURE_AUTH_SALT', 'generated_SECURE_AUTH_SALT' );
define( 'LOGGED_IN_SALT', 'generated_LOGGED_IN_SALT' );
define( 'NONCE_SALT', 'generated_NONCE_SALT' );
IF IT WILL BE in this sequence:
define( 'AUTH_KEY', 'generated_AUTH_KEY' );
define( 'SECURE_AUTH_KEY','generated_SECURE_AUTH_KEY' );
define( 'LOGGED_IN_KEY', 'generated_LOGGED_IN_KEY' );
define( 'NONCE_KEY', 'generated_NONCE_KEY' );
define( 'AUTH_SALT', 'generated_AUTH_SALT' );
define( 'SECURE_AUTH_SALT', 'generated_SECURE_AUTH_SALT' );
define( 'LOGGED_IN_SALT', 'generated_LOGGED_IN_SALT' );
define( 'NONCE_SALT', 'generated_NONCE_SALT' );
define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', true );
$base = '/';
define( 'DOMAIN_CURRENT_SITE', 'www.website.com' );
define( 'PATH_CURRENT_SITE', '/' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );
IT DON’T LET YOU TO SEE THE SUPER ADMIN PANEL…
Thanks for the great support !!!