When trying to go to the Network Admin using the link in the upper right of the admin, the URL is wrong. The link it gives me is:
http://nottsforestsoccer.comwp-admin/network/
Should be:
http://nottsforestsoccer.com/wp-admin/network/
I can manually add in the missing /, but nothing in the network admin works because it posts new data to the wrong URL - that I can't manually change.
My config is
define('WP_DEBUG', false);
define('WP_ALLOW_MULTISITE', true);
define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', false );
$base = '/';
define( 'DOMAIN_CURRENT_SITE', 'nottsforestsoccer.com' );
define( 'PATH_CURRENT_SITE', '' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );
Not sure if there is a setting off or what.