|
我最近在忙着搭建测试部的使用环境,遇到了bugzilla和testlink的集成问题,不知道有哪位可以帮忙看一下啊?
按照网上的知道说法就是需要修改config.inc.php中如下一行:$g_interface_bugs = 'BUGZILLA';
以及cfg中的bugzilla.cfg.php文件中的如下几行:
/** DB host to use when connecting to the Bugzilla db */
define('BUG_TRACK_DB_HOST', 'localhost');
/** name of the database that contains the Bugzilla tables */
define('BUG_TRACK_DB_NAME', 'bugs');
/** DB user and password to use for connecting to the Bugzilla db */
define('BUG_TRACK_DB_USER', 'root');
define('BUG_TRACK_DB_PASS', '123');
/** link of the web server */
define('BUG_TRACK_HREF', "http://10.86.6.19/bugzilla/show_bug.cgi?id=");
/** link to the bugtracking system, for entering new bugs */
define('BUG_TRACK_ENTER_BUG_HREF',"http://10.86.6.19/bugzilla/index.cgi/");
?>
由于我的bugzilla和testlink在同一台主机上,所以设置如上。可关键问题是,只要我将confgi.inc.php中的NO改为BUGZILLA,testlink中执行测试用例的页面就是空白的,无法显示。改回为NO,就是正常的。不知道有哪位同仁知道怎么改,请多指导啊 |
|