$5 for who can help me find a solution...

Status
Not open for further replies.

Divvy

Active Member
806
2009
18
0
hi friends,

maybe you can help me...
I have an blog and want to create a second one.
My idea is using the same posts... how can I make that possible?

I have both blogs installed at same database...

What is my possibilities? :-)

Until now, I found this instructions to share wp_users table:

In ALL of my installs:
in wp-config.php:
added just above /* That's all, stop editing! Happy blogging. */:
Code:
define('CUSTOM_CAPABILITIES_PREFIX', 'wp_');
in wp-includes/capabilities.php:
replaced:
Code:
$this->cap_key = $wpdb->prefix . 'capabilities';
with:

Code:
if (defined ('CUSTOM_CAPABILITIES_PREFIX')) {
    $this->cap_key = CUSTOM_CAPABILITIES_PREFIX . 'capabilities';
    }
    else {    $this->cap_key = $wpdb->prefix . 'capabilities';
    }
In all installs EXCEPT the original:
in wp-config.php:
added just above /* That's all, stop editing! Happy blogging. */:
Code:
define ('WPLANG', '');
define('CUSTOM_USER_TABLE', 'wp_users');
define('CUSTOM_USER_META_TABLE', 'wp_usermeta');
AND replaced:
Code:
$table_prefix = 'wp_';
with
Code:
$table_prefix = 'anyotherprefix_' //the prefix has to be unique for each installation
Now I need the same for wp_posts... but cant find anything on google.
Any ideas, please PM me!
I will pay $5 via paypal to the first person that fix this... :)
 
8 comments
I know that... but I dont want to make that work, because I post about 20 posts per day, and like that will give me more work.
If I found a way to share wp_posts in the second blog, the posts will appear automatically :)
 
Status
Not open for further replies.
Back
Top