Jason之BUGFREE安装配置
一、 软件环境:bugfree2.1.2.zip,按提示进行安装;
二、 关键是邮件发送配置:
a) Php.ini
[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = mail.lilianwang.com
; http://php.net/smtp-port
smtp_port = 25
b) Config.inc.php文件
/* 8. Mail setting. */
$_CFG['Mail']['On']          = true;
/* $_CFG['Mail']['FromAddress'] = "bugfree@{$_SERVER['SERVER_NAME']}"; */
$_CFG['Mail']['FromAddress'] = "master@lilianwang.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']     = 'mail.lilianwang.com';       // The server to connect. Default is localhost
$_CFG['Mail']['SendParam']['SMTPAuth'] = true;    // Whether or not to use SMTP authentication. Default is FALSE
$_CFG['Mail']['SendParam']['Username'] = 'master@lilianwang.com';       // The username to use for SMTP authentication.
$_CFG['Mail']['SendParam']['Password'] = '111111';       // The password to use for SMTP authentication.
三、 BUGFREE就建立完成了,这个最简单。