Managed to fix it by going into phpMyAdmin and running this query:
SELECT * FROM wp_options WHERE option_name LIKE '%aio%';
From the results, I grabbed the option_value of the aio_wp_security_configs row, found aiowps_turnstile_secret_key and aiowps_turnstile_site_key inside it, updated them with the new keys, and was able to log back in.
Hope this helps someone!
-
This reply was modified 2 months, 4 weeks ago by
youKnowWho.
Hi @flash1433,
Glad to know you have solved the issue.
Adding the constant below to wp-config.php will remove the Turnstile CAPTCHA field from the login page and allow users to log in.
define( 'AIOS_DISABLE_LOGIN_LOCKOUT', true );
Regards
Ahhh😂, thank you @hjogiupdraftplus. Glad to know!! I went the long way xd.