なぜ情報を複製しますか?また、2つのデータベース間で一貫したユーザー管理を行うための対策を講じなければなりません。
私はこのプラグインを使用してWordPressの認証ソースとして既存のデータベースを使用することをお勧め:WordPressの認証を設定し、
ユーザーは既にワードプレスにログインできるようにするために:http://wordpress.org/extend/plugins/external-database-authentication/
更新あなたのウェブサイトにログインしたときのクッキー。これには最低限必要なWordPressコードを含めて、wp_setcookie()関数を呼び出します。 Using wordpress login functionsから
// include the wordpress files necessary to run its functions
include('../classpages/wp-config.php'); // this includes wp-settings.php, which includes wp-db.php, which makes the database connection
include(ABSPATH . WPINC . '/pluggable-functions.php');
// use wordpress's function to create the login cookies
// this creates a cookie for the username and another for the hashed password, which wordpress reauthenticates each time we call its wp_get_current_user() function
wp_setcookie($user_login, $user_pass, false, '', '', $cookieuser);
関連:[ワードプレスMUを使用せずに複数のドメインとインストールを横切る同期ワードプレスのユーザーアカウント](http://wordpress.stackexchange.com/questions/3924/synchronize-wordpress-user-いくつかのようなmysqlエラーを提供するときに – hakre