I am having trouble integrating JIRA with Testlink for some reason. I have added the following to my config.inc.php and custom.config.inc.php
$g_interface_bugs = 'JIRA';
and then added the below to jira.cfg.php
/** The DB host to use when connecting to the JIRA db */
define('BUG_TRACK_DB_HOST', 'http://192.168.1.22:8080');
/** The name of the database that contains the jira tables */
define('BUG_TRACK_DB_NAME', 'jiradb');
/** The DB type being used by jira */
define('BUG_TRACK_DB_USER', 'admin');
/** The DB password to use for connecting to the jira db */
define('BUG_TRACK_DB_PASS', 'admin');
/** link of the web server for jira */
// define('BUG_TRACK_HREF', "http://localhost:8080/secure/Dashboard.jspa");
define ('BUG_TRACK_HREF', "http://192.168.1.22:8080/secure/Dashboard.jspa");
/** The DB type to use for connecting to the bugtracking db */
//define('BUG_TRACK_DB_TYPE', 'mysql');
define('BUG_TRACK_DB_TYPE', 'mysql');
/** link to the bugtracking system, for entering new bugs */
define('BUG_TRACK_ENTER_BUG_HREF',"http://192.168.1.22:8080/secure/CreateI ... fault.jspa");
I am not entirely sure what the name of the database is but I have put the 'BUG_TRACK_DB_NAME' as jiradb as I presume that it is the default.
After restarting everything up and accessing Testlink after executing a test the link to Jira is not present.
I have spent some time looking through this forum and others but I cannot find any solution it.
I am really struggling with this and seem to have hit a brick wall

Thank you in advance.