MyBB Community Forums

Full Version: Two-Factor Authentication Issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone,
The best solution for Admins who can't access their ACP after enabling the "Two-Factor Authentication" is here:
https://community.mybb.com/thread-189134...pid1392649
Thanks flies to the author:  Mr. lolapples
You can clear 2FA by running this query through your database:
UPDATE `mybb_adminoptions` SET `authsecret`='' WHERE  `uid`=1;

Change table prefix (mybb_) and / or uid (1) if they are different in your case.
(2024-03-15, 06:18 PM)effone Wrote: [ -> ]You can clear 2FA by running this query through your database:
UPDATE `mybb_adminoptions` SET `authsecret`='' WHERE  `uid`=1;

Change table prefix (mybb_) and / or uid (1) if they are different in your case.

Great feedback!
Thanks!
Yea but just ensure you don't forget to reenable it thereafter.