TestLink - 数据库访问错误 - debug_print_backtrace() 输出开始 (CWE-200)
TestLink - DB Access Error - debug_print_backtrace() OUTPUT START (CWE-200)
我安装了MySQL Workbench 6.3,可以在ISS上安装TestLink(php),成功安装了工具,但是访问站点时有如下提示在主页上,我已经在几个地方进行了研究并找到了解决方案。
Windows 7 + IIS + PHP 5.6
DB Access Error - debug_print_backtrace() OUTPUT START ATTENTION:
Enabling more debug info will produce path disclosure weakness
(CWE-200)
Having this additional Information could be useful for reporting
issue to development TEAM.
在 /var/testlink/logs/userlog<num>.log
中,您可以看到如下内容:
ERROR: permission denied for relation users - in /var/www/testlink-copy/third_party/adodb/drivers/adodb-postgres7.inc.php - Line 167
要解决此问题,您必须为日志文件中的每个关系或序列设置权限。
例如(db_version
table):
GRANT ALL PRIVILEGES on table db_version to testlink;
我安装了MySQL Workbench 6.3,可以在ISS上安装TestLink(php),成功安装了工具,但是访问站点时有如下提示在主页上,我已经在几个地方进行了研究并找到了解决方案。
Windows 7 + IIS + PHP 5.6
DB Access Error - debug_print_backtrace() OUTPUT START ATTENTION: Enabling more debug info will produce path disclosure weakness (CWE-200) Having this additional Information could be useful for reporting issue to development TEAM.
在 /var/testlink/logs/userlog<num>.log
中,您可以看到如下内容:
ERROR: permission denied for relation users - in /var/www/testlink-copy/third_party/adodb/drivers/adodb-postgres7.inc.php - Line 167
要解决此问题,您必须为日志文件中的每个关系或序列设置权限。
例如(db_version
table):
GRANT ALL PRIVILEGES on table db_version to testlink;