Super Admin Login status got changed to Inactive.

Super User Admin - Login Status got changed to Inactive due to which I am unable to login. Where in mysql DB can I make the change of login status to renable login? I am not sure what happened but make have selected something wrong by mistake.

How do I change login status from Inactive to Active.

As a best practice, I should have a workflow control Active Inactive status have having the filed in the Edit View.

Do you have access to mysql database?

In the database, go to User table and change the Status of your username to “Active” then you can login to your system.

if you have DB access , just run this SQL query.

update users set status =‘Active’ where id =‘1’

1 Like