Here is my answer with wp2.
1st blog's table prefix : 'wp_'
2nd blog's table prefix : 'wp2_'
Both in the same DB.
Step 1:
After installation, in the 2nd blog's wp-settings.php, around
line 87,
change
$wpdb->prefix = $table_prefix;
to
$table_prefix = 'wp_';
$wpdb->prefix = $table_prefix;
$wpdb->users = 'wp_users';
$wpdb->usermeta = 'wp_usermeta';
Step 2:
In the wp2_options table in the database,
look for an entry with wp2_user_roles in
option_name column.
Change this to wp_user_roles.
That's it. This seems to be working for me.


Loading...