3.2 / mu setup
-
Created a brand new 3.2 wp site. Followed the instructions for setting it up as multi-site/creating a network.
If I go to wp-admin/network.php it says “An existing WordPress network was detected.”
However, when I’m logged in, I don’t see a drop down menu or anything showing me as Superadmin as shown here: https://codex.www.ads-software.com/Network_Admin_Settings_Screen
my .htaccess file is what it should be, per what it gave me.
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L]
and my wp-config.php has exactly what was provided.
/** Enable Multi Site */ define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', false ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', ' ADBSDFD.com' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );
What could I be missing? Thanks!
- The topic ‘3.2 / mu setup’ is closed to new replies.