安装testlink问题

来源:互联网 发布:上古卷轴5怪物数据 编辑:程序博客网 时间:2024/06/11 03:35

image

1、Checking GD Graphic library Failed! GD Graphic library not enabled.

解决办法:安装php56w-gd

2、在CentOS 6.5上安装了php 5.3,但要求PHP5.5以上

解决方法
rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm
yum remove php-common # Need to remove this, otherwise it conflicts
yum install php56w
yum install php56w-mysql
yum install php56w-common
yum install php56w-pdo
yum install php56w-opcache
php --version

3、There are security warnings for your consideration. See details on file: /var/testlink/logs/config_check.txt. To disable any reference to these checkings, set $tlCfg->config_check_warning_mode = 'SILENT';

解决方法
vi /var/www/html/testlink/config.inc.php
找到并注释掉:\(tlCfg->config_check_warning_mode = 'FILE';
增加一行 \)tlCfg->config_check_warning_mode = 'SILENT';

刷新后就消失了该提示语

原创粉丝点击