虽然描述bugzilla安装的文章已经很多,这里只想把我的安装过程简单说下。
系统平台:windows 2000 professional
http server:apache 2.0.52
bugzialla:2.18rc3
mysql:4.1.7-nt
perl:ActivePerl-5.8.6.811-MSWin32-x86-122208.msi
我把perl安装到了c:/usr/下,然后把所有bugzilla下的*.cgi文件的#!/usr/bin/perl -wT改成#!C:/usr/bin/perl -wT
加了“C:”2个字符,比较懒,嘿嘿
。
mysql按照通常设置简历bugs用户和bugs数据库后,还要做一步:
D:/MySQL/bin>mysql -u root -p
Enter password: ********
Welcome to the MySQL monitor. Commands end with ; or /g.
Your MySQL connection id is 16 to server version: 4.1.7-nt
Type 'help;' or '/h' for help. Type '/c' to clear the buffer.
mysql> set password for bugs@localhost = old_password('new_password');
mysql> FLUSH PRIVILEGES;
以上'new_password'替换成自己的bugs密码,因为mysql4.1的密码加密方式修改过了,但bugzilla2.18rc3只支持旧的加密方式。也许还要设置mysql对旧加密方式的支持,我通过mysql admistrator工具改的,不细说了。
apache的设置我采用别名alias的方式,修改http.conf,增加或修改相应行
AddHandler cgi-script .cgi .pl
AddDefaultCharset GB2312
# ----bugzilla-----start-----------------------
Alias /bugzilla/ "E:/bugzilla-2.18rc3/"
<Directory "E:/bugzilla-2.18rc3/">
Options ExecCGI
AllowOverride Limit
DirectoryIndex index.cgi
</Directory>
# ----bugzilla-----end-----------------------
到这里http://localhost/bugzilla/我就看到那大虫子了。![]()
下面要开始汉化了........
2022

被折叠的 条评论
为什么被折叠?



