Hi, I’m unable to login to cyberpanel admin panel. It directly prompts me to give the google authenticator code. Even after filling all the form fields, the login button doesn’t seem to work. I’ve attached a screenshot of the console and the login page. It says that the two CDN files from angularjs could not be loaded. Please look into this and give us a solution as soon as possible.
Try disabling 2FA temporarily by changing value in a Cyberpanel database.
Login to your server via ssh and enter mysql (you can find root password in /etc/cyberpanel/mysqlPassword file):
mysql -u root -p
Select database cyberpanel:
USE cyberpanel;
Disable 2FA for your admin user:
UPDATE
loginSystem_administrator
SET twoFA = 0 WHERE userName = ‘admin’;
Try login in now, maybe there is a bug in 2FA. Do you use latest Cybepranel version?