MyBB Community Forums

Full Version: Invisible Members
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey.

The conversion from phpBB to myBB was flawless. The only problem i have is that all members which were registered BEFORE the conversion are now invisible to all other users. Why is this and how do i fix it?

The Hide me from the Who's Online list option in the UCP is checked for them. How can i uncheck this for all users without having to go through them all 1-by-1?

Any help will be appreciated.
Welcome to MyBB Smile

In phpMyAdmin, run this query:

UPDATE `mybb_users` SET `invisible` = '1' WHERE `invisible` = '0';

After that, all should be dandy Smile
(2009-10-15, 04:54 PM)MattRogowski Wrote: [ -> ]Welcome to MyBB Smile

In phpMyAdmin, run this query:

UPDATE `mybb_users` SET `invisible` = '1' WHERE `invisible` = '0';

After that, all should be dandy Smile

The code i needed was SET invisible = 0 WHERE invisible = 1.
Thanks a lot for this code - Everything is working great now.

I'm so happy with MyBB - Thanks again! Smile
Oops, got my numbers mixed up Toungue Sorry!! Glad it's sorted Smile
Np, all is dandy now! ^^
Oh yes, I had the same problem too with my conversion. However I didn't have a lot of users, so it wasn't a bother to go into each user's settings and change them.