How to have 10 blogs and 1 user database?
-
Hi there, i have a little problem with coding wordpress. I have like 10 blogs with different languages and different databases, templates … like
us.blog.com
es.blog.com
fr.blog.com….
jp.blog.com
and i want whenever somebody register to one of them, to have certain rights in every blog.com website. I have 10 databases like
db.us.blog.com:3306? … db.jp.blog.com:3306?
and i want that even jp.blog.com retrieve user data from
db.worldwide.blog.com:3306?
I have seen this link https://codex.www.ads-software.com/Editing_wp-config.php#Custom_User_and_Usermeta_Tables
define(‘CUSTOM_USER_TABLE’, $table_prefix.’my_users’);
define(‘CUSTOM_USER_META_TABLE’, $table_prefix.’my_usermeta’);but what this does is just looking in the same database. Any help? Thanks.
- The topic ‘How to have 10 blogs and 1 user database?’ is closed to new replies.