upnet Active member Dec 17, 2016 #1 A member asked that their profile be deleted so I used the ACP member delete function. This turns the member into a guest but their name remains. Is there any way to alter their name at this point? A query to the database perhaps?
A member asked that their profile be deleted so I used the ACP member delete function. This turns the member into a guest but their name remains. Is there any way to alter their name at this point? A query to the database perhaps?
Jake Bunce Well-known member Dec 18, 2016 #2 Rich (BB code): UPDATE xf_thread SET username = 'newname' WHERE user_id = 0 AND username = 'oldname' Rich (BB code): UPDATE xf_post SET username = 'newname' WHERE user_id = 0 AND username = 'oldname' Upvote 0 Downvote
Rich (BB code): UPDATE xf_thread SET username = 'newname' WHERE user_id = 0 AND username = 'oldname' Rich (BB code): UPDATE xf_post SET username = 'newname' WHERE user_id = 0 AND username = 'oldname'
upnet Active member Dec 22, 2016 #3 Jake Bunce said: Rich (BB code): UPDATE xf_thread SET username = 'newname' WHERE user_id = 0 AND username = 'oldname' Rich (BB code): UPDATE xf_post SET username = 'newname' WHERE user_id = 0 AND username = 'oldname' Click to expand... Perfect thanks. Upvote 0 Downvote
Jake Bunce said: Rich (BB code): UPDATE xf_thread SET username = 'newname' WHERE user_id = 0 AND username = 'oldname' Rich (BB code): UPDATE xf_post SET username = 'newname' WHERE user_id = 0 AND username = 'oldname' Click to expand... Perfect thanks.