Home  >  Article  >  php教程  >  BugFree配置:安装配置BugFree

BugFree配置:安装配置BugFree

WBOY
WBOYOriginal
2016-06-13 11:37:431547browse

到这里下载最新的bugFree,解压之后将bugfree目录拷贝到C:\Apache2.2\htdocs目录,复制文件C:\Apache2.2\htdocs\bugfree\Include\Config.inc.Sample.php为新文件Include/Config.inc.php,编辑新创建的文件,修改数据库链接设置:

/* 3. Define the username and password of the BugFree database. */
$_CFG['DB']['User'] = 'root'; // 数据库登录用户名
$_CFG['DB']['Password'] = ''; // 数据库登录用户密码,一般为123456
$_CFG['DB']['Host'] = 'localhost'; // 数据库服务器地址
$_CFG['DB']['Database'] = 'bugfree2'; // 指定BugFree数据库名称
$_CFG['DB']['TablePrefix'] = 'bf_'; // 数据库表前缀,默认为bf_。除非有冲突,不建议修改或为空
$_CFG['DBCharset'] = 'UTF8'; // 数据库编码设置,保留默认值

重启Apache,在浏览器中输入:http://localhost/bugfree/install.php

进行数据库的安装,以及初始化,如果设置的数据库不存在,按照提示创建数据库,再点击继续安装。

初始化用户名密码是:admin 123456

点击“安装全新的 BugFree2”。

安装成功后,显示首次登录的默认管理员帐号和密码,按照提示首先使用默认管理员用户名和密码登陆BugFree。

作者:Shane
出处:http://bluescorpio.cnblogs.com

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn