From: lpsolit%gmail.com <> Date: Mon, 1 May 2006 03:37:27 +0000 (+0000) Subject: Bug 335999: Remove documentation specific to MySQL 3.x - Patch by Frédéric Buclin... X-Git-Tag: bugzilla-2.22.1~126 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09def8b457954e60333b0a9ad66adb0c3eb6b27e;p=thirdparty%2Fbugzilla.git Bug 335999: Remove documentation specific to MySQL 3.x - Patch by Frédéric Buclin r=Colin --- diff --git a/docs/xml/installation.xml b/docs/xml/installation.xml index 3184122615..33db264c00 100644 --- a/docs/xml/installation.xml +++ b/docs/xml/installation.xml @@ -1,5 +1,5 @@ - + Installing Bugzilla @@ -678,20 +678,10 @@ to modify your /etc/my.cnf as below. - - If you are using MySQL 4.0 or newer, enter: - [mysqld] # Allow packets up to 1M max_allowed_packet=1M - - If you are using an older version of MySQL, enter: - - [mysqld] - # Allow packets up to 1M - set-variable = max_allowed_packet=1M - There is also a parameter in Bugzilla called 'maxattachmentsize' (default = 1000 Kb) that controls the maximum allowable attachment @@ -729,12 +719,6 @@ Rebuilding the indexes can be done based on documentation found at . - - - - The ft_min_word_len parameter is only supported in MySQL v4 or higher. - -
@@ -795,11 +779,7 @@ - Run the mysql command-line client. - - - - If you are using MySQL 4.0 or newer, enter: + Run the mysql command-line client and enter: mysql> GRANT SELECT, INSERT, @@ -808,20 +788,6 @@ TO bugs@localhost IDENTIFIED BY '$db_pass'; mysql> FLUSH PRIVILEGES; - - If you are using an older version of MySQL,the - LOCK TABLES and - CREATE TEMPORARY TABLES - permissions will be unavailable and should be removed from - the permissions list. In this case, the following command - line can be used: - - - mysql> GRANT SELECT, INSERT, - UPDATE, DELETE, INDEX, ALTER, CREATE, DROP, - REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY - '$db_pass'; - mysql> FLUSH PRIVILEGES;