I installed Testlinink and i want configuire integration with jira.
i set up config.inc.php File
1. with JIRASOAP integration:
Code: Select all
$g_interface_bugs = 'JIRASOAP';
jirasoap.cfg.php
Code: Select all
//Set the bug tracking system Interface to JIRA 3.11.1 (tested with this version)
//-----------------------------------------------------------------------------------------
/* The following parameters are not in use. */
define('BUG_TRACK_DB_TYPE', '[Not in Use]');
define('BUG_TRACK_DB_NAME', '[Not in Use]');
define('BUG_TRACK_DB_CHARSET', '[Not in Use]');
define('BUG_TRACK_DB_USER', '[Not in Use]');
define('BUG_TRACK_DB_PASS', '[Not in Use]');
//-----------------------------------------------------------------------------------------
/** The Username being used by JIRA logon */
define('BUG_TRACK_USERNAME', 'Domain\User');
/** The Password being used by JIRA logon*/
define('BUG_TRACK_PASSWORD', 'Password');
/** link of the web server for JIRA*/
define('BUG_TRACK_HREF',"http://localhost:8080/");
/** path of JIRA WSDL */
define('BUG_TRACK_SOAP_HREF', "rpc/soap/jirasoapservice-v2?wsdl");
/** link of the web server for jira ticket*/
define('BUG_TRACK_SHOW_BUG_HREF', "browse/");
/** link of the web server for creating new jira ticket*/
define('BUG_TRACK_ENTER_BUG_HREF',"secure/Dashboard.jspa?os_destination=%2Fsecure%2FCreateIssue%21default.jspa");
and got this ERROR
2. with JIRA integrationFatal error: require_once() [function.require]: Failed opening required 'soapclient.class.php' (include_path='.;C:\php5\pear;.;C:\AppServ\www\testlink\lib\functions\;C:\AppServ\www\testlink\third_party\') in C:\AppServ\www\testlink\lib\functions\common.php on line 100
Code: Select all
$g_interface_bugs = 'JIRA';
Code: Select all
//Set the bug tracking system Interface to JIRA 3.1.1
/** The DB host to use when connecting to the JIRA db */
define('BUG_TRACK_DB_HOST', 'SERVER\INSTANCE');
/** The DB type to use for connecting to the bugtracking db */
define('BUG_TRACK_DB_TYPE', 'MSSERVER');
/** The name of the database that contains the jira tables */
define('BUG_TRACK_DB_NAME', 'jira');
/** The DB type being used by jira */
define('BUG_TRACK_DB_USER', 'jirauser');
/** The DB password to use for connecting to the jira db */
define('BUG_TRACK_DB_PASS', 'jirapassword');
/** link of the web server for jira */
// define('BUG_TRACK_HREF', "http://localhost:8080/secure/Dashboard.jspa");
define('BUG_TRACK_HREF', "http://localhost:8080/browse/");
/** link to the bugtracking system, for entering new bugs */
define('BUG_TRACK_ENTER_BUG_HREF',"http://localhost:8080/browse/");
and got this ERROR
Any ideas, where do i have misconfiguration ?Fatal error: require_once() [function.require]: Failed opening required 'ADODB_msserver.class.php' (include_path='.;C:\php5\pear;.;C:\AppServ\www\testlink\lib\functions\;C:\AppServ\www\testlink\third_party\') in C:\AppServ\www\testlink\lib\functions\common.php on line 100