Can anybody help me out?
I have installed Testlink 1.7.4 and Mantis Mantis 1.1.2 both are working fine independantly.
Now I wanted to integrate both the application and I tried to do it by following exact steps provided in
http://svn.sourceforge.jp/svnroot/testl ... -howto.pdf
but still I am not able to do it.

Following are the modified contents of my .php files which are required to change for integration
config_inc.php
<?php
$g_hostname = 'localhost';
$g_db_type = 'mysql';
$g_database_name = 'bugtracker';
$g_db_username = 'root';
$g_db_password = 'admin';
# --- anonymous login -----------
# Allow anonymous login
$g_allow_anonymous_login = ON;
$g_anonymous_account ='dummy'; ( I have created this account in Mantis using admin userid)
?>
mantis.cfg.php
<?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 */
define(''BUG_TRACK_DB_USER', 'root');
/** The DB password to use for connecting to the mantis db */
define('BUG_TRACK_DB_PASS', 'admin');
/** link to the bugtracking system, for viewing bugs */
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/bug_report_page.php");
define('BUG_TRACK_DB_CHARSET',"windows-1250");
// define('BUG_TRACK_DB_CHARSET',"gb2312");
define('BUG_TRACK_DB_CHARSET',"UTF-8");
?>
I searched for the simillar problems in complete forum and tried with all the solutions given but still....... no output
