Hey, I am trying to set up the wordpressmu wp-config.php file, but something keeps on going wrong. My problems come up as the following error:
Problem in wp-config.php - $base is set to BASE when it should be the path like "/" or "/blogs/"! Please fix it!
URL to the problem would be: http://www.verivex.com/millerwing/index.php
This is my wp-config.php file;
______________________________________
<?php
// ** MySQL settings ** //
define('DB_NAME', 'nineinte_verivexmillerwingblog'); // The name of the database
define('DB_USER', 'nineinte_SeanW'); // Your MySQL username
define('DB_PASSWORD', 'MyPassword'); // ...and password
define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value
define('VHOST', 'VHOSTSETTING');
$base = 'BASE';
// double check $base
if( $base == 'BASE' )
die( 'Problem in wp-config.php - $base is set to BASE when it should be the path like "/" or "/blogs/"! Please fix it!' );
// Change the prefix if you want to have multiple blogs in a single database.
$table_prefix = 'verivex_'; // nineinte_verivexmillerwingblog
// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-includes/languages.
// For example, install de.mo to wp-includes/languages and set WPLANG to 'de'
// to enable German language support.
define ('WPLANG', '');
define( "WP_USE_MULTIPLE_DB", false );
/* Stop editing */
define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');
?>
_______________________________________
Thank You for the Help. =)