diff options
author | terry%netscape.com <> | 1999-03-12 00:30:51 +0000 |
---|---|---|
committer | terry%netscape.com <> | 1999-03-12 00:30:51 +0000 |
commit | 6f3e5c8018709ef5a43427c5259e24372eefe7c3 (patch) | |
tree | b2cbd1c250a035299e5bde3402aa1a0aa26b6492 /README | |
parent | Redistributed some QA folks. (diff) | |
download | bugzilla-6f3e5c8018709ef5a43427c5259e24372eefe7c3.tar.gz bugzilla-6f3e5c8018709ef5a43427c5259e24372eefe7c3.tar.bz2 bugzilla-6f3e5c8018709ef5a43427c5259e24372eefe7c3.zip |
Added 'groups' stuff, where we have different group bits that we can
put on a person or on a bug. Some of the group bits control access to bugzilla
features. And a person can't access a bug unless he has every group bit set
that is also set on the bug.
Diffstat (limited to 'README')
-rw-r--r-- | README | 30 |
1 files changed, 13 insertions, 17 deletions
@@ -301,27 +301,23 @@ takes four parameters which are (with appropriate values): Just fill in those values and close up global.pl -5. Setting the Maintainer Information +5. Setting up yourself as Maintainer - Before the last file level configuration can be done you'll have to create -a data/params file. This file is created when the first bugzilla page is -accessed that needs it. The easiest way is to go visit the "query.cgi" -bugzilla page. After that, the data subdirectory should have been created, and -the data/params file should have appeared. - - Within that directory you'll find a file called 'params'. params contains -all sorts of juicy things that you'll be tempted to change, but don't bother -- -there's a nice web form to change all except the maintainer's email address. -Find the line that begins with "$::param{'maintainer'}" and set the -maintainer's email address to your own. - - Now, you can create your own bugzilla account. To do so, just try to "add + Start by creating your own bugzilla account. To do so, just try to "add a bug" from the main bugzilla menu (now available from your system through your web browser!). You'll be prompted for logon info, and you should enter your email address and then select 'mail me my password'. When you get the password -mail, log in with it. Don't finish entering that new bug; instead, go to the -query page (off of the bugzilla main menu) where you'll now find a 'edit -parameters' option which is filled with editable treats. +mail, log in with it. Don't finish entering that new bug. + + Now, bring up MySQL, and add yourself to every group. This will +effectively make you 'superuser'. The SQL to type is: + + update profiles set groupset=0x7fffffffffffffff where login_name = XXX; + +replacing XXX with your email address in quotes. + +Now, if you go to the query page (off of the bugzilla main menu) where you'll +now find a 'edit parameters' option which is filled with editable treats. 6. Setting Up the Whining Cron Job (Optional) |