Ok I am trying to install WPMU v. 2.7.1 on my /blog section of my server. I am using Godaddy as well.
I filled out all the database information correctly.
example:
/** MySQL database username */
define('DB_USER', 'MyUserName');
/** MySQL database password */
define('DB_PASSWORD', 'MyPassword');
/** MySQL hostname */
define('DB_HOST', 'DatabaseHost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
But I am still getting this message...
Problem in wp-config.php - $base is set to BASE when it should be the path like "/" or "/blogs/"! Please fix it!
So I changed these sections to this...
$base = '/';
// double check $base
if( $base == '/' )
but I am still getting the same message...
Help?