New network create failed
-
Hi ,
I have installed multiple domain on the multi-site environment in the single network. finally found this multi-site network plugin on internet to manage and create network.
After installing, When I click on add new network I’m getting “Network not created” error but I’m able to create the same domain in the existing network. Below is the configuration of my wp-config.php file. Am I missing anything.Is there any wp-cli command to create new network in the wordpress mulitisite. Please help me on this.
define(‘FS_METHOD’, ‘direct’);
/** Multisite */
define(‘WP_ALLOW_MULTISITE’, true);
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, true);define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘DOMAIN_CURRENT_SITE’, $_SERVER[‘HTTP_HOST’]);
define(‘WP_HOME’, ‘https://’ . $_SERVER[‘HTTP_HOST’]);
define(‘WP_SITEURL’, ‘https://’ . $_SERVER[‘HTTP_HOST’]);
define(‘WP_CONTENT_DIR’, dirname(__FILE__) . ‘/wp-content’);
define(‘WP_CONTENT_URL’, ‘https://’ . $_SERVER[‘HTTP_HOST’] . ‘/wp-content’);
define(‘WP_PLUGIN_DIR’, dirname(__FILE__) . ‘/wp-content/plugins’);
define(‘WP_PLUGIN_URL’, ‘https://’ . $_SERVER[‘HTTP_HOST’] . ‘/wp-content/plugins’);
define(‘PLUGINDIR’, dirname(__FILE__) . ‘/wp-content/plugins’);
define(‘UPLOADS’, ‘wp-content/uploads’);
define(‘WPMU_PLUGIN_DIR’, dirname(__FILE__) . ‘/wp-content/mu-plugins’);
define(‘WPMU_PLUGIN_URL’, ‘https://’ . $_SERVER[‘HTTP_HOST’] . ‘/wp-content/mu-plugins’);
define(‘MUPLUGINDIR’, dirname(__FILE__) . ‘/wp-content/mu-plugins’);/* That’s all, stop editing! Happy blogging. */
Thanks in advance.
Regards,
Sargurunathan
- The topic ‘New network create failed’ is closed to new replies.