Server Not Found after creating second blog site
-
I managed to upgrade to 3.0 from a single user in 2.9.2.
I wanted to use the multisite feature and followed the instructions for creating a network. First of all I added:
define('WP_ALLOW_MULTISITE', true);
Then I went to Tools>Network and followed the directions by creating blogs.dir folder in wp-content folder, then copied and pasted the information for config.php:
define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', true ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'fheathermoore.com' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 ); define( 'AUTH_SALT', .... ); define( 'SECURE_AUTH_SALT', .... ); define( 'LOGGED_IN_SALT', .... ); define( 'NONCE_SALT', ... );
The authentication key information is deliberately left out above.
followed by .htaccess:
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L]
It all appeared to worked perfectly, and I managed to create a new site. However, when I tried to go into the backend or visit the site, I get the error message:
“Server not found
Firefox can’t find the server at sanctuaryofheap.fheathermoore.com.”You can visit the subdomain I created at: https://www.sanctuaryofheap.fheathermoore.com.
- The topic ‘Server Not Found after creating second blog site’ is closed to new replies.