Hi, I have a similar problem,
I can't figure why I don't get the icon to connect to mantis in TestLink. Any ideas?
I've tried a variety of logins, and thought I'd finish up on 'administrator' (security isn't an issue at the moment).
I have the following files:
/var/www/custom_config .inc.php
$g_interface_bugs='MANTIS';
==================================
/var/www/cfg/mantis.cfg.php
/** The DB host to use when connecting to the mantis db */
define('BUG_TRACK_DB_HOST', 'localhost');
/** The name of the database that contains the mantis tables */
define('BUG_TRACK_DB_NAME', 'bugtracker');
/** The DB type being used by mantis
values: mysql,mssql,postgres
*/
define('BUG_TRACK_DB_TYPE', 'mysql');
/** The DB password to use for connecting to the mantis db */
define('BUG_TRACK_DB_USER', 'administrator');
define('BUG_TRACK_DB_PASS', 'root');
define('BUG_TRACK_HREF', "
http://localhost/mantis/view.php?id=");
/** link to the bugtracking system, for entering new bugs */
define('BUG_TRACK_ENTER_BUG_HREF',"
http://localhost/mantis/");
?>
======================================================================
/var/www/mantis/config_inc.php
define('BUG_TRACK_HREF', "
http://localhost/mantis/view.php?id=");
/** link to the bugtracking system, for entering new bugs */
define('BUG_TRACK_ENTER_BUG_HREF',"
http://localhost/mantis/");
# --- Anonymous Access / Signup ---
$g_allow_signup = ON;
$g_allow_anonymous_login = ON;
$g_anonymous_account = 'administrator';