Created
October 17, 2011 07:08
-
-
Save bueltge/1292097 to your computer and use it in GitHub Desktop.
Update User Data in WordPress, depending from domain
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- generic email addresses and new passwords for users | |
UPDATE wp_users | |
SET user_email = CONCAT(user_login, '@example.com'), | |
user_pass = MD5(CONCAT(RAND(), CAST(ID AS CHAR), user_login)); | |
-- generic email addresses for commentors | |
UPDATE wp_comments | |
SET comment_author_email = CONCAT(CAST(comment_ID AS CHAR), '@example.com'); | |
-- admin email address | |
UPDATE wp_options | |
SET option_value = '[email protected]' | |
WHERE option_name = 'admin_email'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment