I’m currently installing multidb on a new wpmu network (only my main domain and a test blog), i set up 258 DB’s (the 256 plus an extra vip for the main blog and a global database) however when i try to navigate to the move-blogs.php i’m getting the following error
Houston, we have a problem!
Looks like you need to create your new db’s! If you’re lucky, this link still works – click me
Database Error: Access denied for user ‘my_old_DB’@’localhost’ to database ‘a_new_database’
Then it shows none of the new databases in the lower section of the error page
This is the setup i have on the move-blogs.php page
///DB Settings
$dbname = “original_old_database”; //This is your current database
$blog_table_prefix = ‘wp_’; //Prefix of your wpmu blog tables, most likely this won’t need to be changed
$newdb_prefix = ‘new_db_prefix’; //This is the prefix of the db’s you’re moving your tables into – we assume they are all the same, if not, you’re in trouble
//We need info to connect to the databases
$dbhost = ‘localhost’;
$dbuname = ‘old_db_username’;
$dbpass = ‘old_db_password’;
//How many db’s are you moving into (16, 256, or 4096)?
$db_scaling = ‘256’;
I’m thinking i probably messed up something here, hopefully it’s not something i messed up on the main db-config file but i’m not much of a mysql expert so i’m not sure