diff options
author | dave%intrec.com <> | 2000-09-06 12:37:57 +0000 |
---|---|---|
committer | dave%intrec.com <> | 2000-09-06 12:37:57 +0000 |
commit | 0c6db6b2f892c976e636506a8536960a82136e63 (patch) | |
tree | 4d96f1a7e4bcd8b6b8f163732aa8db18158aee6e /README | |
parent | 39ff6f4bda0f2a3d9050ea95feb2ca9f8eed19f8 (diff) | |
download | bugs-0c6db6b2f892c976e636506a8536960a82136e63.tar bugs-0c6db6b2f892c976e636506a8536960a82136e63.tar.gz bugs-0c6db6b2f892c976e636506a8536960a82136e63.tar.bz2 bugs-0c6db6b2f892c976e636506a8536960a82136e63.tar.xz bugs-0c6db6b2f892c976e636506a8536960a82136e63.zip |
Fix for bug 33491: adds comment about configuration items for Apache being
in httpd.conf in never versions of apache, rather than in srm.conf or
access.conf. Also adds comment in the "adding a maintainer by hand"
section that you may need command-line options for the mysql command if
you've enabled security in MySQL.
Diffstat (limited to 'README')
-rw-r--r-- | README | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -101,12 +101,14 @@ real tendency to bog down, so please use mirrors. The current location at the time of this writing (02/17/99) can be found in Appendix A. Quality, general Perl module installation instructions can be found on -the CPAN website, but the easy thing to do is to just use the CPAN shell which does all the hard work for you +the CPAN website, but the easy thing to do is to just use the CPAN shell +which does all the hard work for you To use the CPAN shell to install DBI: 1. Type perl -MCPAN -e 'install "DBI"' -(replace DBI with the name of the module you wish to install, Data::Dumper, etc...) +(replace DBI with the name of the module you wish to install, Data::Dumper, +etc...) To do it the hard way: @@ -216,6 +218,10 @@ file the line: is in the stanza that covers the directories you intend to put the bugzilla .html and .cgi files into. +If you are using a newer version of Apache, both of the above lines will be +(or will need to be) in the httpd.conf file, rather than srm.conf or +access.conf. + 2. Installing the Bugzilla Files You should untar the bugzilla files into a directory that you're @@ -344,7 +350,9 @@ if there's exactly one user in the database, and if so, add that person to every group. If you want to add someone to every group by hand, you can do it by -typing the appropriate MySQL commands. Run mysql, and type: +typing the appropriate MySQL commands. Run 'mysql bugs' (you may need +extra parameters, depending on your security settings according to +section 3, above), and type: update profiles set groupset=0x7fffffffffffffff where login_name = 'XXX'; |