我遇到了 Testlink 问题 - 在报告和指标 - >失败的测试用例 - 无法查看任何结果 - 右侧框架出现致命错误
Fatal error: require_once() [function.require]: Failed opening required 'ADODB_hsql.class.php' (include_path='.;C:\php\pear;.;C:\wamp\www\testlink_1_9_RC1\lib\functions\;C:\wamp\www\testlink_1_9_RC1\third_party\') in C:\wamp\www\testlink_1_9_RC1\lib\functions\common.php on line 96
我还添加到 custom_config,inc.php:
$tlCfg->config_check_warning_mode = 'SILENT';
$tlCfg->api->enabled = TRUE;
$g_attachments->order_by = " ORDER BY id ASC ";
$g_interface_bugs = 'JIRA';
并配置jira.cfg.php:
define('BUG_TRACK_DB_HOST', 'localhost:8100');
/** 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_password>');
/** link of the web server for jira */
define('BUG_TRACK_HREF', "http://localhost:8100/secure/Dashboard.jspa");
/** The DB type to use for connecting to the bugtracking db */
define('BUG_TRACK_DB_TYPE', 'hsql');
注意:如您所见,我使用 Jira 使用 hsql
任何想法如何解决它?