Hello to the Community,
Accidentally i have disabled the admin account and now i don't have any idea that any other admin account exist or not so i can enable the disabled admin account.
For context, I have locally deployed the MantisBT.
How can i enable this admin account? like making any changes in php configuration etc?
Kindly guide me on this
Re-enable the disabled admin account
Moderators: Developer, Contributor
Re: Re-enable the disabled admin account
you can use phpmyadmin to enable the account directly in the corresponding table, that will do the trick 

Re: Re-enable the disabled admin account
As mentioned by cas, you need to update the user record in your database using SQL
Code: Select all
UPDATE mantis_user_table SET enabled=1 WHERE username='admin';