TestLink所需环境为PHP+MYSQL (支持MS SQL等),系统推荐使用PHP5.2,安装成功以后,如果运行时出错,主要两种错:
[1].HP Warning: strtotime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for '8.0/no DST' instead in XXX
解决该错误的方法是找到错误的PHP文件,打开
1、在php文件头加上:date_default_timezone_set("PRC");
2、更改php.ini种date.timezone的属性值为PRC,同时去掉前面的注释就可以了。
[2].Deprecated: Function ereg_replace() is deprecated in D:Program FilesApache Software FoundationApache2.2htdocs estlinklibfunctionslang_api.php on line 173
解决该错误的方法是打开PHP.INI文件,将
;extension=php_mbstring.dll
改为
extension=php_mbstring.dll
以及将
;mbstring.func_overload = 0
修改为:
mbstring.func_overload = 7
修改之后,系统成功运行
进去之后,还会发现一个WARNING:
There are security warnings for your consideration. To disable any reference to these checkings, set $tlCfg->config_check_warning_mode = 'SILENT';
这需要打开TestLink下config.inc.php文件,将
$tlCfg->config_check_warning_mode = 'FILE';
改为
$tlCfg->config_check_warning_mode = 'SILENT';
再运行,WARNING消失!
Testlink 1.8.5 安装错误的解决方法
发表于:2017-01-09
作者:
来源:
- 周排行
- 月排行
-   在Redmine中整合Git版本库
-   JIRA远程访问出现警告提示的处理方式
-   QC之TEST LAB测试执行管理
-   CentOS安装搭建BugFree
-   Windows下搭建及配置Mantis缺陷管理工具
-   TP配置apache下Rewrite模式
-   项目管理软件之争,禅道和JIRA大对比
-   JIRA远程访问出现警告提示的处理方式
-   CentOS安装搭建BugFree
-   CentOS 7下安装Xampp和Testlink
-   Window下安装bugzilla
-   QC之TEST LAB测试执行管理
-   Bugfree发送邮件设置
-   Bugfree如何修改Bug7种解决方案的标注方法