Hi,
at times, we are experiecing the login get stick at the 2FA screen… circrling with the note error.
do a refresh and re-enter code, and it continues on…
Thanks,
JS
Hi,
at times, we are experiecing the login get stick at the 2FA screen… circrling with the note error.
do a refresh and re-enter code, and it continues on…
Thanks,
JS
The jquery.smartWizard.min.js may not be loaded yet, you may try test by changing the follows in the views/login2fa.php:
loadjs.ready("load", () => {
$loginWizard = $('#login-wizard').smartWizard({
to:
loadjs.ready(["load", "smartwizard"], () => {
$loginWizard = $('#login-wizard').smartWizard({
the code appears to permanently hang the 2FA screen
The code only make sure the function will be run after smartWizard.js is loaded. You better press F12 and go to the Console panel to check if you have syntax error.