XF 1.1 Can i combine 2 accounts?

Robby

Well-known member
I have recently imported old members, is it possible to combine two accounts? So that the old posts of the member can combine with the new...
 
Oh, you mean merge two users.

That's also not possible, but it has been suggested.

You could have merged them during the import, if their user name or email address had been the same.
 
Did you rebuild the user post counts? Do the posts themselves reflect the change?
I did, I didn't look
I know there are still 2 member profiles, and the post count on the member page is off

I'll check

nope, showing old username
I'll try again

do there need to be ticks around the user id?

SET user_id = 'new_user_id';
 
No ticks around the user_id.

You can change the username too with these queries:

Rich (BB code):
UPDATE xf_post
SET user_id = new_user_id, username = 'new username'
WHERE username = 'old username';

UPDATE xf_thread
SET user_id = new_user_id, username = 'new username'
WHERE username = 'old username';
 
wouldn't I need?
Code:
SET user_id = new_user_id, username = 'new username'
WHERE user_id = old_user_id, username = 'old username';

I'm just not seeing any changed and it's still showing 200 post on the old ID in mysql

thanks for the help
 
Top Bottom