Support Forum

Creating User Accounts from admin side

DO doctorb
doctorb
Member

In another thread, I was discussing that some user accounts in my site do not seem to have got created at forums. The site shwoing 3300 members, forums showing 2800 (approx).

 

Is there some way to create the remaining account in the forums from admin side? some kind of member import or sync?

2 Answers

New Answer

MP Mr Papa
Mr Papa
Member

no, not really… but if you have a wp user that for some reason did not get a corresponding entry in sfmembers, the first time they visit the forum, it will get created…

you could write a php script… just call sp_create_member_data($id) where $id is the ID column in the wp users table…

DO doctorb
doctorb
Member

Mr Papa said

no, not really… but if you have a wp user that for some reason did not get a corresponding entry in sfmembers, the first time they visit the forum, it will get created…

you could write a php script… just call sp_create_member_data($id) where $id is the ID column in the wp users table…

Ok. That’s reassuring. Thank you.