this is my situation. I have TestLink 1.9.7 installed and working, along with Trac installed and working on the same machine. I'm trying to get the two to integrate, but I'm having some difficulty. I was able to install the XMLRPC plugin (I had an issue where easy_install was giving an index error, so I downloaded the zipped source and installed from there, which worked), and made the following changes:
On custom_config.inc.php, I added the line:
$g_interface_bugs = 'TRAC';
And on trac.cfg.php, I added the lines:
define('BUG_TRACK_DB_HOST', 'http://localhost:8000/trac');
define('BUG_TRACK_XMLRPC_HOST', 'http://user:pass@localhost');
$g_interface_bugs_project_name_mapping = array('TLProj' => 'TracProject');
On trac.ini, I added the lines:
[components]
tracrpc.* = enabled
And yet, I don't see an option in TL's Issue Tracker Management to even create the Issue Tracker for Trac. Help, please!
Thanks in advance.