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:
Any ideas, please PM me!
I will pay $5 via paypal to the first person that fix this...
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:
Now I need the same for wp_posts... but cant find anything on google.In ALL of my installs:
in wp-config.php:
added just above /* That's all, stop editing! Happy blogging. */:
in wp-includes/capabilities.php:Code:define('CUSTOM_CAPABILITIES_PREFIX', 'wp_');
replaced:
with:Code:$this->cap_key = $wpdb->prefix . 'capabilities';
In all installs EXCEPT the original:Code:if (defined ('CUSTOM_CAPABILITIES_PREFIX')) { $this->cap_key = CUSTOM_CAPABILITIES_PREFIX . 'capabilities'; } else { $this->cap_key = $wpdb->prefix . 'capabilities'; }
in wp-config.php:
added just above /* That's all, stop editing! Happy blogging. */:
AND replaced:Code:define ('WPLANG', ''); define('CUSTOM_USER_TABLE', 'wp_users'); define('CUSTOM_USER_META_TABLE', 'wp_usermeta');
withCode:$table_prefix = 'wp_';
Code:$table_prefix = 'anyotherprefix_' //the prefix has to be unique for each installation
Any ideas, please PM me!
I will pay $5 via paypal to the first person that fix this...