Bug Mgmt Icon not appear for Bugzilla-Tlink integration

LATEST Official version.
Questions and discussions - NO ISSUES
FOR ISSUES => http://mantis.testlink.org

Moderators: Amaradana, TurboPT, TL Developers

Post Reply
boed
TestLink user
Posts: 2
Joined: Wed Apr 20, 2011 9:12 am

Bug Mgmt Icon not appear for Bugzilla-Tlink integration

Post by boed »

Hi All,

I need your help to solve my problem with BTS Integration with testlink. Previously, I have read threads that related to this problem. However, the solution provided there can not be applied to my problem.
The problem is that the bug management icon does not appear on testlink.

Below is the configuration changes that I made on testlink configuration files:
1. cfg/bugzilla.cfg.php
In this file, I have added the following changes:
/** DB host to use when connecting to the Bugzilla db */
define('BUG_TRACK_DB_HOST', 'bugs-02.boed.com');

/** name of the database that contains the Bugzilla tables */
define('BUG_TRACK_DB_NAME', 'boeddb');

/** charset of the database that contains the Bugzilla tables */
define('BUG_TRACK_DB_CHARSET', 'utf8');

/** useful if you have several schemas see BUGID 1444*/
// define('BUG_TRACK_DB_SCHEMA', '[CONFIGURE_BUG_TRACK_DB_SCHEMA]');

/** DB type used for the bugtracking db */
define('BUG_TRACK_DB_TYPE','mysql');

/** DB user and password to use for connecting to the Bugzilla db */
define('BUG_TRACK_DB_USER', 'boed');
define('BUG_TRACK_DB_PASS', 'boed11');

/** link of the web server */
define('BUG_TRACK_HREF', "http://bugs-02.boed.com/SH/show_bug.cgi?id=");

/** link to the bugtracking system, for entering new bugs */
define('BUG_TRACK_ENTER_BUG_HREF',"http://bugs-02.boed.com/SH/");

2. In file custom_config.inc.php
I added the following changes:
$tlCfg->exec_cfg->show_testsuite_contents = ENABLED;
$tlCfg->exec_cfg->can_delete_execution = ENABLED;
$tlCfg->testcase_cfg->can_edit_executed = ENABLED;

$g_interface_bugs = 'BUGZILLA';

However, the icon still does not appear. Is there something missing on my configuration?

In the htdocs/testlink/logs/userlog39.log, there are messages that state:
mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: Access denied for user 'boed'@'testlink-02' (using password: YES) - in /opt/lampp/htdocs/testlink/third_party/adodb/drivers/adodb-mysql.inc.php - Line 364

Does any body know how to solve this problem?

There are few suggestions from other thread such as:
1. adding $tlCfg->exec_cfg->show_last_exec_any_build = TRUE; in custom_config.inc.php
2. adding $g_bugInterfaceOn = true; // Old value false;
$g_bugInterface = null;
in custom_config file
But still does not work.

I really appreciate your help
Thanks,
boed
TurboPT
Member of TestLink Community
Posts: 343
Joined: Sun Dec 10, 2006 4:51 am

Re: Bug Mgmt Icon not appear for Bugzilla-Tlink integration

Post by TurboPT »

Based on the mysql error message, this seems to be a cross-host configuration? [bugzilla on one server, testlink on another server]

If this is true, see this thread.
Post Reply