I deleted everything in the wordpress folder and emptied the trash.
I kept the following files index.php, .htaccess, and web.config from the root. I also kept the files wp-config.php from the blogs folder.
I downloaded 3.7.1 and extracted the zip into the root folder (wordpress) and renamed the wordpress folder to blogs.
I put index.php, .htaccess, and web.config into the root folder and wp-config.php into the blogs folder.
the web.config only holds the information that the network setup said to put in there. index.php only has:
define(‘WP_USE_THEMES’, true);
/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . ‘/blogs/wp-blog-header.php’ );
and the .htaccess has :
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).*) blogs/$1 [L]
RewriteRule ^(.*\.php)$ blogs/$1 [L]
RewriteRule . index.php [L]
the wp-config has:
define(‘WP_DEBUG’, true);
/******************************** Multisite Network*/
/*first*/
define( ‘WP_ALLOW_MULTISITE’, true);
/*start network setup */
$base = realpath(dirname(__FILE__)) . ‘/’;
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, true);
define(‘DOMAIN_CURRENT_SITE’, ‘wordpress2.ctctel.com’);
/*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’);
the site still has the error: “Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in E:\inetpub\wwwroot\wordpress\blogs\wp-includes\wp-db.php on line 1142”