|
我按说明将config.inc.php中的TL_INTERFACE_BUGS值修改成JIRA,然后修改jira.cfg.php文件,我不知道我的jira.cfg.php文件修改是否有误?因为启动后老报错,且testlink进不去
启动的报错信息:
Warning: mysql_connect(): Unknown MySQL Server Host '\testsvr1' (11001) in c:\program files\easyphp1-8\www\testlink\lib\bugtracking\int_bugtracking.php on line 90
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at c:\program files\easyphp1-8\www\testlink\lib\bugtracking\int_bugtracking.php:90) in c:\program files\easyphp1-8\www\testlink\login.php on line 35
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at c:\program files\easyphp1-8\www\testlink\lib\bugtracking\int_bugtracking.php:90) in c:\program files\easyphp1-8\www\testlink\login.php on line 35
jira.cfg.php设置:
//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', '\\testsvr1');
/** The name of the database that contains the jira tables */
define('BUG_TRACK_DB_NAME', 'hyplatjiradb');
/** The DB type being used by jira */
define('BUG_TRACK_DB_USER', 'hyplatadmin');
/** The DB password to use for connecting to the jira db */
define('BUG_TRACK_DB_PASS', 'jirahyplatadmin');
/* link of the web server for jira*/
define('BUG_TRACK_HREF', "http://testsvr1:8080/secure/Dashboard.jspa");
/** link to the bugtracking system, for entering new bugs */
define('BUG_TRACK_ENTER_BUG_HREF',"<to be configured>"); |
|