• Resolved spartanv7

    (@praeix)


    I was attempting a Network install. I followed all the instructions explicitly, but when I logged back into the WordPress admin area after Step 5: Enabling the Network, there was no super admin panel.

    I then proceeded to research as much of this topic as I could. All of the WordPress “help” resources pointed me to double check everything that I just did. So I did that. The wp-config.php file is correct. mod_rewrite() is enabled through my hosting. The .htaccess file is 100% correct according to the instructions. The database tables exist and have proper permissions. The blog.dir directory exists and has proper permissions. But there is NO super admin panel that shows up.

    The only thing I haven’t tried is a re-install. If anybody can help me out with this issue, I will greatly appreciate it.

    Thanks

Viewing 6 replies - 31 through 36 (of 36 total)
  • 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 !!!

    No, if you put it at the BOTTOM of the file, under the “that’s all stop editing” it will not work. ?? Because you’re not supposed to edit past that…

    If the salts and nonce are before or after the multisite defines, it shouldn’t matter….

    But glad you got it.

    Thread Starter spartanv7

    (@praeix)

    Sorry to take so long getting back on this, but the solutions offered up here are definitely correct. The problem with mine was not placing the code that WordPress generates in the wp-config.php file properly. (I didn’t place it after the “that’s all stop editing” line, but I still botched it :-))

    Thank you for all the replies and I hope that it helped some people out.

    OK – same problem for me – I went through all of the steps and placed the code in the files correctly. I even moved it to the middle of the config file and still no dice. No Super Admin Panel. Any ideas?

    Oh, and when I installed the code in the config file, the “Network” option disappeared in the Tools menu…?

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    ddrust – This topic is resolved, please make a new one.

Viewing 6 replies - 31 through 36 (of 36 total)
  • The topic ‘No Super Admin Panel’ is closed to new replies.