New Multisite Error
-
So I created a new multisite to customize a new theme.
I have the site http://www.gothamartshd.com setup and successfully running a multisite for https://store.gothamartshd.com
Now, going to http://test.gothamartshd.com my site redirects to my other site (mdpdance.com) and gives me the following:
“Greetings Network Administrator! The network currently allows user registrations. To change or disable registration go to your Options page.”
The site you were looking for, https://testgothamartshdcom.mdpdance.com/, does not exist.”
Note: The FTP server has mdpdance.com WP installed and gothamartshd.com WP in a folder on the FTP.
I have changed my .htaccess many times. Maybe missing something here.
The following doesn’t work:# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressI changed it to this, still not working:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^wp-admin$ wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^(wp-(content|admin|includes).*) $1 [L] RewriteRule ^(.*\.php)$ $1 [L] RewriteRule . index.php [L] </IfModule> # END WordPressAnd adding the following to my wp-config.php:
define('WP_HOME','http://gothamartshd.com'); define('WP_SITEURL','http://gothamartshd.com'); /* Enabling multisites */ define('WP_ALLOW_MULTISITE', true); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', true); define('DOMAIN_CURRENT_SITE', 'gothamartshd.com'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1); /* Fix for ram crashing issues with menu and resolved Theme Customization. */ define('WP_MEMORY_LIMIT','128M'); define('WP_MAX_MEMORY_LIMIT','512M'); define('NOBLOGREDIRECT', 'http://gothamartshd.com/'); /* That's all, stop editing! Happy blogging. */ /** Absolute path to the WordPress directory. */ if ( !defined('ABSPATH') ) define('ABSPATH', dirname(__FILE__) . '/'); /** Sets up WordPress vars and included files. */ require_once(ABSPATH . 'wp-settings.php');Any suggestions?
Thanks in advance.
The topic ‘New Multisite Error’ is closed to new replies.