by davila » Fri Aug 01, 2008 4:05 pm
We've recently migrated to Jira (mssql) for our bug tracking (TL using mysql). We were getting "Connection to your Bug Tracking System has failed:Please check your configuration." but got it figured out (needed mssql extension enabled as mentioned above). There is no longer an error message at login; however, there isn't anything showing up when executing tests for bugs. We might be missing something else in the jira.cfg.php file.
Here is our setup:
* TL 1.7.1 on serverA (GNU/Linux) using MySQL 5.0.27
* Jira Enterprise Edition 3.12.1 on serverB (WindowsXP) using SQL Server 2005 (9.0.1399)
Used PHP 5.1.6 to test the connection from srvrA to srvrB and the connection is successful with:
<?php
mssql_connect("$host", "$usr", "$pass") or die("unable to connect");
echo "Connected to MSSQL<br />";
?>
What could be a cause for the missing bug info when executing tests?
We tried reversing the following, but that didn't help:
/** link of the web server for jira */
define('BUG_TRACK_HREF', "http://<$host>:8080/secure/Dashboard.jspa");
/** link to the bugtracking system, for entering new bugs */
define('BUG_TRACK_ENTER_BUG_HREF',"http://<$host>:8080/browse/");