Re: Willing to Buy, som Pre Sale Questions?
I don't have any sites that I'm aware of with an integrated vBulletin and WordPress. You can search Google and find the bridge/plugin with some samples sites I'd imagine. Here's the
actual vBulletin plugin you'd need.
Sharing WordPress accounts across multiple blogs is definitely doable. Just so everyone else knows, here's how you would do it:
1. Make sure you are using
WP v2.6 or greater
2. All WordPress instances must be in the same database
3. Add custom defines to the
wp-config.php of your secondary (child) blog
Let's assume your primary blog was installed with a table prefix of "wp_" and the secondary one with "wp2_". You'll then want to add the following code in
wp-config.php of the secondary installation.
Code:
define('CUSTOM_USER_TABLE', 'wp_users');
define('CUSTOM_USER_META_TABLE', 'wp_usermeta');
Install it right above the following line:
Code:
/* That's all, stop editing! Happy blogging. */
Now you are pointing your secondary blog to the primary WordPress user tables.