Hi Guys,
Am trying to create a network of sites using a sub-domain which has WordPress installed on it. I want to have sub- directories for the sites. The problem is that, when I go to Tools, Network Setup is not showing up or from the Admin panel above.
I have tried the following:
http://codex.wordpress.org/Create_A_Network:
/* Multisite */
define( ‘WP_ALLOW_MULTISITE’, true );
define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, false );
$base = ‘/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘yoursite.com’ );
define( ‘PATH_CURRENT_SITE’, ‘/’ );
define( ‘SITE_ID_CURRENT_SITE’, 1 );
define( ‘BLOG_ID_CURRENT_SITE’, 1 );
Am not sure what where am making the mistake.
Thanks