Cannabis Ape Active member Apr 5, 2023 #1 Phone crashed, had to do factory reset and ofc didn't back up the codes. How can I temp disable authenticator? Got full access to my sever. Cheers
Phone crashed, had to do factory reset and ofc didn't back up the codes. How can I temp disable authenticator? Got full access to my sever. Cheers
nocte Well-known member Apr 5, 2023 #2 A SQL query should do the trick: SQL: UPDATE `xf_user_option` SET `use_tfa` = 0 WHERE user_id = 1; (replace 1 with your user_id) Upvote 0 Downvote
A SQL query should do the trick: SQL: UPDATE `xf_user_option` SET `use_tfa` = 0 WHERE user_id = 1; (replace 1 with your user_id)
TPerry Well-known member Apr 5, 2023 #3 There is a simpler way without messing with SQL. A simple addition to the config file in the /src/config.php of $config['enableTfa'] = false; should allow you to disable it. Then remove that option and then re-enable the 2FA option. Upvote 0 Downvote
There is a simpler way without messing with SQL. A simple addition to the config file in the /src/config.php of $config['enableTfa'] = false; should allow you to disable it. Then remove that option and then re-enable the 2FA option.