Say I buy a hosting package with GoDaddy and they allow 1GB max databases.
So my question is how can I combine and use 2 DB’s in WordPress? Is there a plug=in or do I need to edit the wp-config.php file?
Benny, Age 12.
Say I buy a hosting package with GoDaddy and they allow 1GB max databases.
So my question is how can I combine and use 2 DB’s in WordPress? Is there a plug=in or do I need to edit the wp-config.php file?
Benny, Age 12.
You must be logged in to post a comment.
1GB is quite large, you won’t get there too quickly. Furthermore, there’s plenty of cheap hosting plans out there with unlimited db size.
Doing what you want is in theory possible by hooking into the
query
and a whole bunch of other filters, but it’s pretty complex, as you will hardly know which db to query to get certain records unless you also keep a meta database. Even then you’ll still often have to query both databases and then merge the results by hooking into further WP hooks. You get the picture.