您的位置:首页 > 其它

BugFree安装手册

2011-01-04 15:39 176 查看
Bugfree安装手册

UNITEQ Co, ltd

版本历史:

版本

时间
修改备注
作者
部门
V1.0
2011-1-4
Clark
研发
目录
一、 安装xampp-win32-1.7.3.exe。... 2
二、 为免与IIS冲突起见,修改xampp服务器端口号。... 2
三、 启动xampp并运行其中的apache和MySql服务。... 2
四、 解压bugfree2.1.1。把bugfree文件包放xampp的安装目录(例如d:/xampp/htdocs)下。... 2
五、 对D:/xampp/htdocs/bugfree/Include/Config.inc.Sample.php复件粘贴生成副件,对副件改名为Config.inc.php。... 2
六、 修改Config.inc.php,写入服务器路径。... 2
七、 登录http://localhost:88/bugfree/install.php进入安装界面进行安装。... 3
八、 安装完毕后, 登录http://localhost:88/bugfree/Login.php进入登录界面。... 3
九、 Bugfree有很多功能都没有附带删除功能。可安装ha_SQLyog_Enterprise软件,用其打开Bugfree后台数据库删除相关内容。 3
十、 设置邮箱... 3

一、 安装xampp-win32-1.7.3.exe。

除了完装路径外,其它一路选择默认操作即可。本例安装在d:。

二、 为免与IIS冲突起见,修改xampp服务器端口号。

IIS会占用80和417两个端口号。故修改xampp占用的端口号。
1
对d:/xampp/apache/conf/httpd.conf用记事本打开后ctrl+f
a,查找Listen 80,然后改其为Listen 88。
b,查找ServerName localhost:80, 然后改其为ServerName localhost:88。
2
对d:/xampp/apache/conf/extra/httpd-ssl.conf,用记事本打开后ctrl+f
a,查找<VirtualHost _default_:443>,然后改其为<VirtualHost _default_:2117>
a,查找ServerName localhost:443, 然后改其为ServerName localhost:2117。
运行环境IE6.0以上版本

三、 启动xampp并运行其中的apache和MySql服务。

四、 解压bugfree2.1.1。把bugfree文件包放xampp的安装目录(例如d:/xampp/htdocs)下。

五、 对D:/xampp/htdocs/bugfree/Include/Config.inc.Sample.php复件粘贴生成副件,对副件改名为Config.inc.php。

六、 修改Config.inc.php,写入服务器路径。

例如用记事本打开后找到
/* Report all errors except E_NOTICE. */
error_reporting(E_ALL ^ E_NOTICE);
/*在这段代码后添加以下代码 */
$BugConfig["ScriptDir"] = "D:/xampp/htdocs/bugfree";

七、 登录http://localhost:88/bugfree/install.php进入安装界面进行安装。

安装后可删除...bugfree/install.php这文件。

八、 安装完毕后, 登录http://localhost:88/bugfree/Login.php进入登录界面。

登录名:admin, 密码123456
服务器登录地址: http://localhost:88/bugfree/Login.php http://192.168.0.196:88/bugfree/Login.php
客户端登录地址:
http://192.168.0.196:88/bugfree/Login.php

九、 Bugfree有很多功能都没有附带删除功能。可安装ha_SQLyog_Enterprise软件,用其打开Bugfree后台数据库删除相关内容。

十、 设置邮箱

对Config.inc进行邮箱设置。 例如本例对D:/xampp/htdocs/bugfree/Include/Config.inc的
/* 8. Mail setting. */和/* 9. SMTP param setting. */进行修改。
修改前:
/* 8. Mail setting. */
$_CFG['Mail']['On'] = true;
$_CFG['Mail']['FromAddress'] = "bugfree@{$_SERVER['SERVER_NAME']}";
$_CFG['Mail']['FromName'] = 'BugFree';
$_CFG['Mail']['ReportTo'] = array(); // Where bug statistics message sened to. If empty, to all users.
$_CFG['Mail']['SendMethod'] = 'SMTP'; // MAIL|SENDMAIL|SMTP|QMAIL

/* 9. SMTP param setting. */
$_CFG['Mail']['SendParam']['Host'] = ''; // The server to connect. Default is localhost
$_CFG['Mail']['SendParam']['SMTPAuth'] = false; // Whether or not to use SMTP authentication. Default is FALSE
$_CFG['Mail']['SendParam']['Username'] = ''; // The username to use for SMTP authentication.
$_CFG['Mail']['SendParam']['Password'] = ''; // The password to use for SMTP authentication.

修改后:
$_CFG['Mail']['On'] = true;
$_CFG['Mail']['FromAddress'] = "zd.chen@unistrong.com"; // 修改。
$_CFG['Mail']['FromName'] = 'BugFree'; // 修改。邮件主题
$_CFG['Mail']['ReportTo'] = array(); // Where bug statistics message sened to. If empty, to all users.
$_CFG['Mail']['SendMethod'] = 'SMTP'; // MAIL|SENDMAIL|SMTP|QMAIL

/* 9. SMTP param setting. */
$_CFG['Mail']['SendParam']['Host'] = 'pop.unistrong.com'; //修改。通常为pop.xxx.com 或者 stmp.xxx.com
$_CFG['Mail']['SendParam']['SMTPAuth'] = true; // 修改。
$_CFG['Mail']['SendParam']['Username'] = 'zd.chen@unistrong.com'; // 修改。邮箱帐号
$_CFG['Mail']['SendParam']['Password'] = '******'; // 修改。*为邮箱密码
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: