CREATES NEW NETWORK, BUT NOT SITE
-
Hi – I’ve installed the WP Multisite Networks plugin, and set it up following the WPMU article:
How to Create a Network of WordPress Multisite Networks
Basically, I installed the plugin and changed wp-config.php to comment-out … define(‘DOMAIN_CURRENT_SITE’, ‘example.com’); … Everything has gone according to the article, until after I create a new Network, (let’s call it “Test Network”). It creates the network, but not the first site, as it displays it has “0” sites (thought it was supposed to create the first one?). So then going back to main Networks menu, if I click on the new Test Network Dashboard, I get the following message, instead of a new Dashboard:
Our automated filters have determined that this blog signup looks like it could be by a spammer. Because of this, to complete you registration please describe in one or two sentences what you intend to use this blog for in the form below and we will review your request. Thank you for your cooperation!
WHAT AM I DOING WRONG??
I mean, it says that there are “0” sites on the new Test Network, which kinda gives credence to there not being a Dashboard, however, the link https://example.com/test-network has actually been created.
Very confused.
Network title: Test Network
Domain: https://example.com
Path: /test-network/
Site name: Test Networkdefine(‘WP_DEBUG’, false);
/* Multisite */
define( ‘WP_ALLOW_MULTISITE’, true );
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
/* define(‘DOMAIN_CURRENT_SITE’, ‘example.com’); */ <—–no, not real domain
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);
/* 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’);Thanks
- The topic ‘CREATES NEW NETWORK, BUT NOT SITE’ is closed to new replies.