Multi-DB Handling other tables

Hi,

I have a bunch of tables that I’ve created for other applications that are currently in my WPMU DB.

I’m getting Multi-DB up and running and I’m not sure how to handle these in db-config.php

For example, I have “demo_ips”, “demo_slots”, “vn_SitemapXML” ,etc..

Would i have lines like below? Since they don’t use the typical “wp_” prefix, I’m confused.

add_global_table(‘demo_ips’:wink:;

add_global_table(‘demo_slots’:wink:;

add_global_table(‘domaininfo’:wink:;

add_global_table(‘site_categories’:wink:;

add_global_table(‘site_subdomains’:wink:;

add_global_table(‘vn_SitemapXML’:wink:;

add_global_table(‘vn_config’:wink:;

..Mike

  • Andrew
    • Champion of Loops

    If the tables aren’t for WP/WPMU plugins and just happen to be residing the WPMU db then there’s no need to add anything to db-config.php for them. Just copy them to your global table and update the connection info for the applications.

    Thanks,

    Andrew