$g_interface_bugs = 'REDMINE';
and configured cfg/redmine.cfg.php with my details:
Code: Select all
// Set the bug tracking system Interface to redMine 0.6.3
/** The DB host to use when connecting to the mantis db */
define('BUG_TRACK_DB_HOST', 'host');
/** The name of the database that contains the mantis tables */
define('BUG_TRACK_DB_NAME', 'testlink');
/** The DB type being used by redMine
* Check config/database.yml in redMine install directory.
* values: mysql, mssql, postgres
*/
define('BUG_TRACK_DB_TYPE', 'mysql');
/** The DB password to use for connecting to the redMine db */
define('BUG_TRACK_DB_USER', 'redmine');
define('BUG_TRACK_DB_PASS', '_pass_redmine');
/**
* redMine store information to database with "latain1" char-set by default.
* If you use another char-set, add "encoding:" entry to config/database.yml.
*
* e.g.)
* ----------------------
* production:
* encoding: utf8
* adapter: mysql
* database: redmine
* host: localhost
* username: root
* password: xxxxxxxx
* ----------------------
*/
define('BUG_TRACK_DB_CHARSET', "UTF-8");
// define('BUG_TRACK_DB_CHARSET',"gb2312");
// define('BUG_TRACK_DB_CHARSET',"UTF-8");
/* link of the web server for redmine */
define('BUG_TRACK_HREF', "http://voltaire/redmine/issues/show/");
// define('BUG_TRACK_HREF', "http://localhost:3000/issues/show/");
/** link to the bugtracking system, for entering new bugs */
define('BUG_TRACK_ENTER_BUG_HREF',"http://voltaire/redmine/");
// define('BUG_TRACK_ENTER_BUG_HREF',"http://localhost:3000/");
?>
but it doesn't seem to work, I am currently using TestLink 1.9.2 and in test execution there's no "Bug Tracker". See image. While in 1.8.4 we used to have "Bug" images under "Bug" to enter bug IDs.

I need help how to proper configure and make REDMINE work with TESTLINK, and about the "Bug" not included in execution of test cases.