Re-enable the disabled admin account

General discussion of Mantis.

Moderators: Developer, Contributor

Post Reply
Divinity7324
Posts: 3
Joined: 10 Oct 2022, 10:09

Re-enable the disabled admin account

Post by Divinity7324 »

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
cas
Posts: 1768
Joined: 11 Mar 2006, 16:08
Contact:

Re: Re-enable the disabled admin account

Post by cas »

you can use phpmyadmin to enable the account directly in the corresponding table, that will do the trick :mrgreen:
dregad
Developer
Posts: 94
Joined: 26 Jul 2010, 14:24

Re: Re-enable the disabled admin account

Post by dregad »

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';
Post Reply