You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I make large numbers of users (1000+), some user emails will be duplicated. This is problematic since Wordpress doesn't allow multiple users with the same email.
The rate of duplicate emails may be on the order of 2/1000.
One way of fixing this might be implementing a query for duplicate emails like: select user_email, count(user_email) from wp_users group by user_email having count(user_email)>1;
and then deleting n - (n - 1) of the resulting duplicates.
The text was updated successfully, but these errors were encountered:
When I make large numbers of users (1000+), some user emails will be duplicated. This is problematic since Wordpress doesn't allow multiple users with the same email.
The rate of duplicate emails may be on the order of 2/1000.
One way of fixing this might be implementing a query for duplicate emails like:
select user_email, count(user_email) from wp_users group by user_email having count(user_email)>1;
and then deleting n - (n - 1) of the resulting duplicates.
The text was updated successfully, but these errors were encountered: