Hi @7oceans,
Ok, no problem. The 404 on submitting the login page is probably a generic WordPress or environmental issue since the Solid Security 2FA module is now disabled.
Below a summary of my findings regarding the “Verify” button not being enabled when entering the 2FA email code by right mouse clicking and then selecting Paste from the contextmenu. Turns out there is a “keyup” event tied to the Authentication Code input field, which is not triggered when (right mouse clicking and) selecting Paste from a contextmenu. This is definately a bug in the plugin code. However I found 2 quick workarounds which don’t require manually entering the 8 digit code.
- Simply copy/paste the 8 digit code by right mouse clicking and then selecting Paste from the contextmenu and then simply press ENTER (or “go” on a mobile device) to submit the form. (Ignore the fact that the “Verify” button is disabled).
- Use Crtl+v to paste the code, which will trigger the “keyup” event and enable the “Verify” button. Click the button or again simply press ENTER to submit the form.
@shanedelierrr,
To fix the 2FA onboarding UI bug as described in this topic the “keyup” event needs to be replaced by an “input” event on line #288 in the core/modules/two-factor/js/on-board.js file. Tested and it works ??