Multi Site install shows sub-site admin but no site content
-
Hey everybody, I’ve read through a couple different threads but haven’t found anything with my exact issue. I’ve gone through the multisite setup with a new 3.0.4 wordpress installation and an old installation that I’ve upgraded to 3.0.4 and experienced the same issue on both sites. I have multi site working… sort of.
I can create sub-folder sites (like i want… and yes I did force it during the installation) and access each sub-site’s admin panel. I cannot, however, access the sub-site. If I create domain.com/sub-site I can’t visit that URL but I can visit domain.com/sub-site/wp-admin without issue. Let me re-phrase… I can visit domain.com/sub-site but nothing shows up except for a blank white page.
I’ve verified that the proper databases are being created in PHP MyAdmin each time I create a new sub-site, verified that my blogs.dir directory is in wp-content, made the necessary changes to the wp-config.php file and the .htaccess file (code below) but I still cannot figure out why I can’t actually see any of the subsites.
For example, going to https://thecarrfamily.org/joshandlaura/ displays nothing. But typing the address in for the dashboard works fine. The main site (root domain) is working great and all of the MS admin options show up for a new site, but it won’t display anything at the sub-folder web address.
here’s my .htaccess code:
# BEGIN WordPress <IfModule mod_rewrite.c> 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).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] </IfModule> # END WordPress
Also the code I added to wp-config.php:
define('WP_ALLOW_MULTISITE', true); define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', false ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'thecarrfamily.org' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );
I also added the define auth salt stuff that wordpress suggested I use… but assume that it’s not a good idea to post here since it said it was for security purposes.
Great WordPress Gurus of the internet, does this sound like I’m missing something in my configuration, code? In my setup for the new site? I’m not sure where to go at this point. Any help would be greatly appreciated.
Thanks!
- The topic ‘Multi Site install shows sub-site admin but no site content’ is closed to new replies.