|
这个是和bugzilla集成的方法,和BUGFREE集成类似,
集成配置:
1. 打开testlink下config.inc.php文件
查找$g_interface_bugs='NO';
修改为$g_interface_bugs='BUGZILLA';
注意:一定要大写BUGZILL
2. 打开testlink下cfg文件夹下的bugzilla.cfg.php文件夹,做如下修改
//Set the bug tracking system Interface
/** The DB host to use when connecting to the Bugzilla db */
define('BUG_TRACK_DB_HOST', '192.168.0.77');
说明:安装bugzilla的服务器地址
/** The name of the database that contains the Bugzilla tables */
define('BUG_TRACK_DB_NAME', 'bug');
说明:bugzilla的数据库名称
/** The DB type being used by Bugzilla */
define('BUG_TRACK_DB_USER', '[url=http://www.ltesting.net/html/17/category-catid-
417.html]mysql[/url]');
说明:访问bugzilla数据库的帐户
/** The DB password to use for connecting to the Bugzilla db */
define('BUG_TRACK_DB_PASS', '123456');
说明:访问bugzilla数据库的密码
/** The DB type to use for connecting to the bugtracking db */
define('BUG_TRACK_DB_TYPE', 'mysql');
/** link of the web server */
define('BUG_TRACK_HREF', "http://192.168.0.77/cgi-bin/index.cgi/show_bug.cgi?id=");
说明:bugzilla访问地址+/show_bug.cgi?id=
/** link to the bugtracking system, for entering new bugs */
define('BUG_TRACK_ENTER_BUG_HREF',"http://192.168.0.77/cgi-bin/index.cgi/");
说明:bugzilla访问地址 |
|