WP Remote Users Sync
WP Remote Users Sync
Description
If you run multiple websites and want to keep users separated, but synchronise them automatically and securely for specific user operations, then WP Remote Users Sync is the plugin to use.
Overview
This plugin adds the following major features to WordPress:
- WP Remote Users Sync admin page: a settings page under “Settings > WP Remote Users Sync” to manage remote sites, security settings, import/export users, and view activity logs.
- Remote Sites: manage an unlimited amount of connected sites with configuration for incoming and outgoing User Actions (Login, Logout, Create, Update, Delete, Password, Role and Metadata).
- Security: WP Remote Users Sync is the only plugin available allowing users to be synchronised with true layers of security in place. All communications are OpenSSL AES-256-CBC encrypted, HMAC SHA256 signed, token-validated and IP-validated.
- Import and Export Users: connected websites’ existing user base can be synchronised manually first thanks to the provided import/export tool.
- Activity Logs: when enabled, all communications between connected sites are logged for admin review and troubleshooting.
- Synchronise all user data: compatible out of the box with WooCommerce, Ultimate Membership, Theme My Login, Gravity Forms, and all user-related plugins as long as they rely on WordPress user metadata and manipulate users with the WordPress user functions.
- Customizable: developers can add their own User Actions using action and filter hooks, and more – see the developers documentation.
- Unlimited websites, unlimited features: there are no restrictions in the number of websites to connect together, and no premium version feature restrictions shenanigans – WP Remote Users Sync is fully-featured right out of the box.
Troubleshooting
Please read the plugin FAQ, there is a lot that may help you there!
WP Remote Users Sync is regularly updated for compatibility, and bug reports are welcome, preferably on Github. Pull Requests from developers following the WordPress Coding Standards (WordPress-Extra ruleset) are highly appreciated and will be credited upon merge.
In case the plugin has not been updated for a while, no panic: it simply means the compatibility flag has not been changed, and it very likely remains compatible with the latest version of WordPress. This is because it was designed with long-term compatibility in mind from the ground up.
Each bug report will be addressed in a timely manner if properly documented – previously unanswered general inquiries and issues reported on the WordPress forum may take significantly longer to receive a response (if any).
Only issues occurring with included plugin features mentioned in “Synchronise all user data”, core WordPress and default WordPress themes (incl. WooCommerce Storefront) will be considered.
Troubleshooting involving 3rd-party plugins or themes will not be addressed on the WordPress support forum.
Integrations
Although WP Remote Users Sync works out of the box with most combinations of WordPress plugins and themes, there are some edge cases necessitating integration, with code included in the core files of WP Remote Users Sync executing under certain conditions.
Integrations added to core are limited to popular plugins and themes: any extra code specific to a handful of installations require a separate custom plugin not shared with the community (created and maintained by a third-party developer).
A typical example necessitating custom integration includes plugins or themes relying on their own custom tables, directly updating the database with SQL queries instead of using WordPress built-in functions, destroying sessions with low-level functions instead of using the built-in WordPress method, etc.
If such need for plugin integration arises, website administrators MUST contact a third-party developer. The plugin author currently does not have the bandwidth to take on custom work for WPRUS.
Installation
This section describes how to install the plugin and get it working.
- Upload the plugin files to the
/wp-content/plugins/wprusdirectory, or install the plugin through the WordPress plugins screen directly for all websites to connect together - Activate the plugin through the ‘Plugins’ screen in WordPress on all websites to connect together
- Edit plugin settings on each site – follow on-screen help if necessary
Screenshots

Remote Sites tab upon installation

Remote Sites tab with remote sites collapsed

Remote Sites tab with a remote site actions settings opened

Security tab - token, encryption, signature and IP settings

User Import/Export tab

Activity Logs tabs with example of communication activity to and from a remote site

Help tab
Faq
WP Remote Users Sync “listens” to changes related to WordPress users, and fires outgoing “actions” to registered remote sites. The registered remote sites with WP Remote Users Sync installed then catch incoming actions and react accordingly.
There is no “Master Website”: each site is working independently, firing and receiving actions depending on each site’s configuration.
Before opening a new issue on Github or contacting the author, please check the following:
- The URLs used in settings of WP Remote Users Sync exactly match the URL in your WordPress settings: the protocol (
httpsvs.https) and the subdomain (www vs. non-www) must be the same across the board. It is also worth checking thehomeoption in thewp_optionstable of the WordPress databases, because in some cases the content of Settings > General > WordPress Address (URL) gets abusively overwritten by plugins or themes. - Visit the permalinks page of each connected site (Settings > Permalinks)
- Activate and check the logs on both local and remote sites when testing (WP Remote Users Sync > Activity Logs > Enable Logs) ; try to find any discrepancies and adjust the settings
- Make sure the feature you have issue with is NOT triggered by a third-party package (plugin or theme). If it is (for instance, data is not synced when updating a user from the front end, but works fine in the admin area), please contact the developer of the third-party package and ask them to follow best practices by triggering the appropriate actions like WordPress core does in the admin area when a user is updated.
- Read the Resolved threads of the support forum – your issue might have already been addressed there
Only then should you open a support thread, with as much information as possible, including logs (with critical information obfuscated if necessary).
Also please note this plugin is provided for free to the community and being maintained during the author’s free time: unless there is a prior arrangement with deadlines and financial compensation, the author will work on it at their own discretion. Insisting to contact the author multiple times via multiple channels in a short amount of time will simply result in the response being delayed further or even completely ignored.
Because these browsers prevent cross-domain third-party cookie manipulation by default, explicit redirections to log in users and destroying all the user sessions when logging out are necessary. With this method, only first-party cookies are manipulated. This is akin to logging in Youtube with a Google account.
Please note that the Login User Action takes a significantly longer time to process when using explicit redirections, particularly if many remote sites are connected.
Login and Logout User Actions need to output some code in the browser to have an effect on the remote website because of the cookies used for authentication.
What this means in practice is that if your theme or a third-party plugin allows users to login/logout without page reload, WP Remote Users Sync cannot output its code on the page, and without extra change to your website code base, the synchronisation can only happen after the page where the user logged in or logged out is actually reloaded.
Please also note that unless “Force Login Redirects & Logout Everywhere” is active, or if “Force Disable Login Redirects & Logout Everywhere” options is active in the “Browser Support” section of the “Miscellaneous” tab, Login and Logout User Actions will not work in browsers preventing cross-domain third-party cookie manipulation when the connected websites are on different domains.
Existing users remain untouched, until an enabled incoming action is received from a remote site.
Users existing on one site and not the other will not be synchronised unless the user is actually updated AND both Create and Update actions are enabled on the site where the user does not exist.
For existing user databases in need of immediate synchronisation, WP Remote Users Sync provides its own user import/export tool.
Multiple layers of security are in place to protect the privacy, integrity and authenticity of communications between connected sites:
- OpenSSL encryption – All communications are encrypted using the AES-256-CBC algorithm with a randomly generated Initialisation Vector to ensure their confidentiality
- HMAC signature – All communications are signed with a hash using the SHA256 algorithm to ensure their integrity
- Authentication tokens – All communications rely on an authentication token valid only for a limited period of time, and asynchronous actions (Login & Logout by default) use a single-use token (true nonce).
- IP verification – IP addresses are verified using the REMOTE_ADDR server environment variable, which cannot be faked (unless the servers or the network infrastructure are already highly compromised, in which case there are bigger issues to worry about).
Despite these strong security measures, administrators use this plugin at their own risk ; the author will not be held liable for any damages resulting from the use of WP Remote Users Sync.
WP Remote Users Sync needs to communicate with the remote sites to actually synchronise users. This means the impact on performances depends on the response time between the connected websites.
Performance degradations are mitigated by the fact that Action Tokens (blocking request) are saved for a period of time, and by the fact that actions are fired ONLY when an operation has been performed on users (not on every page load).
Asynchronous actions (Login & Logout by default) are the most costly: the operations themselves are not blocking, but their Action Tokens have to be renewed beforehand each time: true nonces, single-use tokens, are necessary for security reasons when firing actions from the browser.
Asynchronous actions are also potentially more susceptible to failure in case of network issues, such as if the page load is interrupted or the enqueued script call failed in the browser ; this is a necessary trade-off as these actions require authentication cookie manipulations.
Overall, performances should be marginally impacted.
The main takeaway is this:
- The more websites are connected, the bigger the relatively negative impact on performances.
- The worse the connection between the remote sites is, the bigger the relatively negative impact on performances.
Roles can be synchronised when the Create and Update actions are fired, with the Role action enabled, and matching transferred and accepted role settings.
Extra user information can be synchronised too out of the box as long as they are stored in the user metadata.
For example, it means all the address and profile information in WooCommerce can be synchronised, but not the orders status or subscription status.
Passwords are automatically synchronised as long as the Password action is enabled (outgoing and incoming respectively).
Communications are encrypted, signed, token-validated and IP-validated to make the process as secure as possible.
Passwords are NEVER communicated or stored in plain text.
WP Remote User Sync integrates with any plugin updating passwords provided they do so respecting WordPress standards.
If the incoming Create action is enabled along with the incoming Update action, the user will be synchronised on the remote website upon user update.
If other actions for this user are fired before that (Login, Logout, Delete, Password, Metadata), nothing will happen, and an action failure log entry will be recorded if the “Enable Logs” box is checked.
Yes – as long as the websites can reach each other, WP Remote User Sync will work.
This means that two websites in localhost (behind virtual hosts, for example) can communicate. However, if one of the websites is on localhost and the other is not, token exchange cannot happen and the websites will not be able to communicate.
WP Remote Users Sync provides its own user import/export tool.
With it, administrators can:
- Export all users
- Export users with specified roles
- Export users with or without their roles
- Export users with or without specified metadata
- Export batches of users – for example, to export 500 users at a time, Max # is set to 500 and Offset to 0, 500, 1,000, 1,500, 2,000… and the export operation is repeated until there are no more users to export.
- Import users into the remote site using the file(s) previously exported
Once downloaded, the files are automatically deleted. In case some files were not downloaded and remained on the server, the containing directory is also cleaned daily.
Exported files are not directly accessible by URL: only administrators can access them.
User passwords cannot be and are NOT exported.
More help can be found on the WordPress support forum for general inquiries and on Github for advanced troubleshooting.
Help is provided for previously unanswered general enquiries and bug fixes only: feature requests, extra integration or conflict resolution with third-party themes or plugins, and specific setup troubleshooting requests will not be addressed (Website administrators must contact a third-party developer).
Reviews
Absolutely incredible...
By Vondelphia.com (vondelphia) on October 29, 2025
Infinite possibilities and VERY COOL!!
Thank you so very much and blessings upon your family.
Works just like advertised!
By bernardberry646 on July 22, 2025
More than a plugin, thanks for an excellent tool!
Mantapp Jiwa Berguna Gess
By Ahlan Creative (thariqaziz21) on July 22, 2025
Plugin yang sangat berguna dan bermanfaat, gratis namun fiturnya sangat powerfull! Bagi yang bingung cara konfigurasinya, bisa cek video youtube dengan menuliskan nama plugin ini!
Excelllent
By Pablo (pabloalf) on May 29, 2025
Does exactly what it says, and more, without any fuss.
No brainer - it's a awesome plugin
By Jakson (Jaskon) on April 8, 2025
Quite simply an absolutely MEGA plugin!
And to say it is easy to use is an understatement.
If you need to sync users and WP user_meta across multiple WordPress sites, this is all you need.
Thank you for all the work you’ve put into it over the years Alexandre - truly appreciated 🙏
Grazie Mille,
Jakson
Conflict Question!
By Loay Bdair (loay0000) on December 10, 2024
Can i use "WP Remote Users Sync" with "WordPress Persistent Login" without any conflict?
This is HUGE.
By kboudreau on September 26, 2024
I have a BuddyBoss primary site and needed to grant the members access to another WordPress installation. This plugin made that possible. THANK YOU!
Truly excellent plugin
By alfy40 on September 6, 2024
This is truly an excellent plugin. It's the most enthusiastic 5-star rating I've ever given.
I have it working with WordPress 6.6.1 in September 2024, and it works great. So you can ignore that message that it "hasn't been tested" with the latest version of WordPress. The core functionality of user creation, deletion, update etc. hasn't changed and it's still working as great as when I tried it first a few years ago.
This plugin is not only great solution when a full-fledged single-sign-on approach with OAuth would be overkill, it's also great when you actually *need* a mirrored account in the other WordPress, for example if you have a BuddyPress instance running next to your main website, and you need people who have an account on the first WordPress to have one on the second as well, with password changes, logins, logouts, updates, etc. to be synchronized between the two.
Bravo, and please keep it going. Tu pourrais même faire payer ce plugin les gens paieraient pour sûr, il n'y a rien d'autre d'équivalent qui existe.
Great Job
By 7akeem7 on June 27, 2024
Great Job .. Thank you soooo much .. you resolved a major issue
Thanks again
Perfect Plugin!
By Jhimross Olinares (jhimross) on June 7, 2024
WP Remote Users Sync is an exceptional plugin that seamlessly synchronizes users across multiple WordPress sites. It's easy to install, intuitive to use, and performs flawlessly, making it a must-have for managing users on multiple websites. Highly recommended!
Changelog
2.1.5
- Better
get_sitehandling
2.1.4
- Fix Bug: Sync fails for remote sites hosted in subdirectory. #95
- Add “Toggle All Actions” link for convenience in Remote Sites tab
2.1.3
- Add support for “Logout Everywhere”
2.1.2
- Add
user_activation_keyto the user data sent during the Update action – thanks to @andreu
2.1.1
- Force distinction for password handling between WordPress 6.8 and older versions
2.1.0
- Require PHP 8.0 minimum
- WordPress 6.8 compatibility
- Fix translation loading
- Password API: bypass already hashed or invalid passwords
2.0.7
- Fix
Uncaught Error
2.0.6
- Fix
_load_textdomain_just_in_time was called incorrectlywarnings
2.0.5
- Fix PHP 8.3 warnings thanks to @cmhello
- Minor improvements making code more explicit for phpcs
2.0.4
- Fix
uninstall.php - Fix possible
mod_securityfalse positive when dealing with encrypted cookie string - Update
header_sentlogic - WordPress tested up to: 6.7
2.0.3
- Password handling third-party compatibility improvements – leverage per-request cache (non-persistent)
2.0.2
- Better password handling (update, reset)
- Make explicit which standards are ignored
- Minor cleanup
2.0.1
- Bugfix – Issue #76 thanks to @intlCEA on Github
- Minor cleanup
- WordPress tested up to: 6.4.1
2.0
- Removed all
wprus_template_*hooks ; addedwprus_get_admin_template_name,wprus_get_admin_template_args,wprus_get_template_name,wprus_get_template_args,wprus_locate_template,wprus_locate_template_pathsandwprus_locate_admin_templateinstead. - Added Multisite support
- Code cleanup
- Remote site URL check does not check the protocol anymore for convenience
- Attempt at solving
‘); document.close();issue on Safari browser – use of backticks, better error handling in browser console - Minor fixes – cron
- Documentation update