|
回复 1# 的帖子
你尝试一下:mysql5.0就可以
打开mysql,在脚本编辑框中输入create database bugs;回车执行
创建用户::在脚本编辑框中输入grant all privileges on bugs.* to 'bugs'@'localhost' identified by '123456';
apache服务你安装了吗?没有安装apache你可以在管理工具----Internet 信息服务进行配置
安装perl模块,配置localconfig文件
# Should checksetup.pl try to verify that your database setup is correct?
# (with some combinations of database servers/Perl modules/moonphase this
# doesn't work)
$db_check = 1;
# With the introduction of a configurable index page using the
# template toolkit, Bugzilla's main index page is now index.cgi.
# Most web servers will allow you to use index.cgi as a directory
# index, and many come preconfigured that way, but if yours doesn't
# then you'll need an index.html file that provides redirection
# to index.cgi. Setting $index_html to 1 below will allow
# checksetup.pl to create one for you if it doesn't exist.
# NOTE: checksetup.pl will not replace an existing file, so if you
# wish to have checksetup.pl create one for you, you must
# make sure that index.html doesn't already exist
$index_html = 1;
bugzilla需要的模块,apache或者iis服务,mysql数据库创建数据库和用户。
把这2个配置一下,然后再checksetup.pl一下看看,有没有问题。 |
|