From: justdave%syndicomm.com <> Date: Sun, 18 Jan 2004 10:47:45 +0000 (+0000) Subject: Bug 227513: Add text to shadowdb param description to indicate that the privileges... X-Git-Tag: bugzilla-2.16.5~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67f44af241205fa367e698759f43d3caded9a1ba;p=thirdparty%2Fbugzilla.git Bug 227513: Add text to shadowdb param description to indicate that the privileges to access the shadowdb must be granted from MySQL prior to entering the shadowdb name in the param. r= myk, a= justdave --- diff --git a/defparams.pl b/defparams.pl index 106da06879..86fd9e4798 100644 --- a/defparams.pl +++ b/defparams.pl @@ -169,7 +169,7 @@ DefParam("usebuggroupsentry", 0); DefParam("shadowdb", - "If non-empty, then this is the name of another database in which Bugzilla will keep a shadow read-only copy of everything. This is done so that long slow read-only operations can be used against this db, and not lock up things for everyone else. Turning on this parameter will create the given database; be careful not to use the name of an existing database with useful data in it!", + "If non-empty, then this is the name of another database in which Bugzilla will keep a shadow read-only copy of everything. This is done so that long slow read-only operations can be used against this db, and not lock up things for everyone else. Turning on this parameter will create the given database; be careful not to use the name of an existing database with useful data in it! The db_user you defined in the localconfig file must already have permission to access and write to the new database name before entering the name here, or the database creation will fail. The same permissions should be granted as for the primary database used by Bugzilla.", "t", "", \&check_shadowdb);