1.1. config.inc.php

1.1.1. 日志路径配置

/**

*  @var string Path to store logs -

*for security reasons (see http://itsecuritysolutions.org/2012-08-13-TestLink-1.9.3-multiple-vulnerabilities/)

*put it out of reach via web or configure access denied.

*/

//$tlCfg->log_path = '/var/testlink/logs/'; /* unix example */

=>

$tlCfg->log_path = 'D:\Program Files\EasyPHP-12.1\www\testlink\logs\\';

1.1.2. 上传文件路径配置

/**

* TL_REPOSITORY_TYPE_FS: the where the filesystem repository should be located

* We recommend to change the directory for security reason.

* (see http://itsecuritysolutions.org/2012-08-13-TestLink-1.9.3-multiple-vulnerabilities/)

* Put it out of reach via web or configure access denied.

*

**/

//$g_repositoryPath = '/var/testlink/upload_area/';  /* unix example */

=》

$g_repositoryPath = 'D:\Program Files\EasyPHP-12.1\www\testlink\upload_area\\';

1.1.3. 配置检查警告模式修改

There are security warnings for your consideration. See details on file: D:\Program Files\EasyPHP-12.1\www\testlink\logsconfig_check.txt. To disable any reference to these checkings, set $tlCfg->config_check_warning_mode = 'SILENT';

/**

* @var string How to warning user when security weak points exists.

*

* 'SCREEN': messages will displayed on login screen, and tl desktop (default)

* 'FILE': a file with a list is created but users are not notified via GUI

*         user will receive a message on screen.

* 'SILENT': same that FILE, but user will not receive message on screen.

*/

//$tlCfg->config_check_warning_mode = 'FILE';

=》

$tlCfg->config_check_warning_mode = 'SILENT';

1.1.4. 语言设置

/** @var string Default localization for users */

// The value must be available in $g_locales (see cfg/const.inc.php).

// Note: An attempt will be done to establish the default locale

// automatically using $_SERVER['HTTP_ACCEPT_LANGUAGE']

//$tlCfg->default_language = 'en_GB';

=》

$tlCfg->default_language = 'zh_CN';

1.2. Testlink数据库配置

testlink\config_db.inc.php

<?php

// Automatically Generated by TestLink Installer

define('DB_TYPE', 'mysql');

define('DB_USER', 'testlink');

define('DB_PASS', 'testlink');

define('DB_HOST', 'localhost');

define('DB_NAME', 'testlink');

define('DB_TABLE_PREFIX', 'tt');

?>

1.3. Testlink和mantis集成

1、首页-Issue Tracker Management

配置内容如下:

Typemantis (Interface: db)

Configuration

<!-- Template mantisdbInterface -->

<issuetracker>

<dbhost>localhost</dbhost>

<dbname>bugtracker</dbname>

<dbtype>mysql</dbtype>

<dbuser>root</dbuser>

<dbpassword></dbpassword>

<uriview>http://192.168.134.120/mantis/view.php?id=</uriview>

<uricreate>http://192.168.134.120/mantis/</uricreate>

</issuetracker>

2、测试项目管理配置Issue Tracker,选择刚才配置::mantis (Interface: db)

Testlink安装后配置修改的更多相关文章

  1. FreeBSD从零开始---安装后配置(一)

    一.安装后配置   上次我们说到FreeBSD的安装,这次我们说FreeBSD安装后的配置和简单优化方法.   安装完BSD只是服务器提供服务这条万里长征路的开始,还需要一些基本的设定和优化.不过实际 ...

  2. FreeBSD从零开始---安装后配置(二)

    系统优化及安全设置   上次说了FreeBSD基本的软件安装和配置,接下来会说系统的详细配置和安全性设置   一.系统优化设置   1.网络相关设置   网卡和IP地址设置: 如果在安装时没有设置IP ...

  3. CentOS7安装后配置MariaDB

    安装后,优先推荐先对安全设置进行配置,键入命令 sudo mysql_secure_installation 键入当前密码,当前没有,直接回车,之后跟随提示会问几个问题:设置 root 密码? / 移 ...

  4. Centos 7最小化安装后配置

    关闭SELINUX vi /etc/sysconfig/selinux SELINUX=disabled :wq 配置网卡(最小化安装后ifconfig无法使用),该配置的前提是采用 NAT模式 vi ...

  5. zabbix系列之六——安装后配置二Items

    https://www.zabbix.com/documentation/3.4/manual/config/items/itemtypes/snmp 1Items 1.1creating items ...

  6. Anaconda 安装后配置环境变量

    Anaconda 安装后在 cmd 中运算 python 无效, 是环境变量没有生效.正常安装需要有三个,配置好就行. D:\xwapp\ProgramData\Anaconda3 D:\xwapp\ ...

  7. centos7 ip/映射/机器名变更/克隆(克隆后配置修改)|2

    1.  查看主机名,三个命令都可以 # hostname # uname -n # cat  /proc/sys/kernel/hostname 2.    使用 vi /etc/hostname 文 ...

  8. postgresql9.5 run 文件linux安装后配置成开机服务

    网上出现的比较多安装方法要么是源码安装,要么是yum安装,我发觉都要配置很多属性,比较麻烦,所以现在我在centos7长用 run文件来安装 http://get.enterprisedb.com/p ...

  9. git安装后配置--config

    安装git后需要配置一下环境,每台计算机上只需要配置一次,程序升级时会保留配置信息. 你可以在任何时候再次通过运行命令来修改它们. 通过git config命令来配置环境变量,这些变量存储在三个不同的 ...

随机推荐

  1. UnityShader实例15:屏幕特效之Bloom

    http://blog.csdn.net/u011047171/article/details/48522073 Bloom特效       概述        Bloom,又称“全屏泛光”,是游戏中 ...

  2. 洛谷【P3908】异或之和

    二进制前置技能:https://www.cnblogs.com/AKMer/p/9698694.html 题目传送门:https://www.luogu.org/problemnew/show/P39 ...

  3. bzoj 2535 & bzoj 2109 航空管制 —— 贪心+拓扑序

    题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2535 https://www.lydsy.com/JudgeOnline/problem.p ...

  4. iOS获取设备型号的方法

    1. [UIDevice currentDevice].model   自己写的看只抓到模拟器和iPhone.暂时不推荐. 2.自己写的找的方法再添加.直接  NSString * deviceMod ...

  5. css基础知识二

    1.盒模型: 实际宽度:外边距*2+内边距*2+边框*2+内容宽度(注意这点,可解决界面元素轻微浮动问题,如hover有边框,以前没的时候会有轻微浮动) 作用:他规定了网页元素如何显示以及其相互关系 ...

  6. 使用Sed抽取MySQL安装文档的目录及行号

    sed -nr  -e '/^2.|^shell/=' -e '/^2.|^shell/p' INSTALL-SOURCE |awk '{if (NR%2==1) x=$1; else printf ...

  7. CentOS 7 配置 http 服务器

    一.http单域名访问 1.安装软件: yum -y install httpd 2.启动服务:systemctl  start httpd 3.设置开机启动: systemctl enable ht ...

  8. 【总结整理】javascript的函数在if中调用时是否加括号---与.net的不同之处

    javascript的函数调用时是否加括号 if(event.preventDefault){ event.preventDefault(); if判断条件里面不要加括号,不加括号是应该以属性形式,i ...

  9. AT指令集

    通用指令 at+cala   设置警报日期和时间 at+cgmi  厂家认证请求,返回模块厂家信 at+cgmm 模式认证请求,返回模块使用频段 at+cgmr 修正认证请求,返回软件版本 at+cg ...

  10. ubuntu下sourceinsight的安装

    转载自blog.csdn.net/zzobin/article/details/7376616 1. 安装wine 详看:http://wiki.ubuntu.org.cn/Wine sudo apt ...