For When You Can't Have The Real Thing
[ start | index | login ]
start > bugzilla > Promote User To Administrator

Promote User To Administrator

Created by dave. Last edited by dave, 10 years and 344 days ago. Viewed 2,895 times. #1
[edit] [rdf]
labels
attachments
(2013-05-13)

Problem

I need my bugzilla account to be an administrative account.

Solution

If you have shell access, look at the localconfig file to get valid database credentials. Once there, either copy the profiles.cryptpassword for a known user account to the administrator account, OR add your account to the admin group:

SELECT @myusr := userid FROM profiles WHERE login_name="PUT YOUR EMAIL HERE";
SELECT @admin := id FROM groups WHERE name="admin";
INSERT INTO user_group_map (user_id,group_id,isbless,grant_type) VALUES (@myusr,@admin,0,0);
Then you will have an administrative account.

(>>Source)

no comments | post comment
This is a collection of techical information, much of it learned the hard way. Consider it a lab book or a /info directory. I doubt much of it will be of use to anyone else.

Useful:


snipsnap.org | Copyright 2000-2002 Matthias L. Jugel and Stephan J. Schmidt