blob: 961d97fe86a7184bb3e3cb44fb3fea5dcd6e2084 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
[
{ type: install
message: <<EOM
Bugzilla has now been installed. To quick setup you have to:
1. Create database user who has rights on bugs database manipulation
by following mysql commands (for MySQL 4.0 or later):
GRANT SELECT, INSERT, UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK TABLES,
CREATE TEMPORARY TABLES, DROP, REFERENCES
ON <database>.* TO <dbuser>@<host>
IDENTIFIED BY '<password>';
FLUSH PRIVILEGES;
where <database> is a bugs database name; <dbuser> is a bugs database
owner; <host> is a host there bugzilla is being setup;
<password> is a database owner's password;
2. Change working directory to %%WWWDIR%%
3. Run "./checksetup.pl" script as root user
4. Read output carefully and follow all instructions
For more complete database setup and post-installation instructions
and security tips/notes please read "Bugzilla Guide" in
%%DOCSDIR%%/en/html/ (chapter 2: "Installing Bugzilla")
EOM
}
{ type: install
message: <<EOM
For upgrades:
0. Back up your data.
1. Run the command inside %%WWWDIR%%
find . -mindepth 2 -name .htaccess -exec rm -f {} \;
2. Run "./checksetup.pl" inside %%WWWDIR%%. You may need to
run it several times.
3. Restart your Web server, especially if you're using mod_perl: this
will save you from a number of troubles.
EOM
}
]
|