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

配置内容如下:

Type:mantis (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. 训练集、测试集loss容易出现的问题总结

    train loss 不断下降,test loss不断下降:说明网络仍在学习; train loss 不断下降,test loss趋于不变:说明网络过拟合; train loss 趋于不变,test ...

  2. bzoj 2093 [Poi2010]Frog——滑动窗口

    题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2093 找第k近的可以用一个含k个元素的滑动窗口来实现. 卡空间也还行,但卡时间.不要预处理倍 ...

  3. 九 fork/join CompletableFuture

    1: Fork/join fork/join:  fork是分叉的意思, join是合并的意思. Fork/Join框架:是JAVA7提供的一个用于并行执行任务的框架,是一个把大任务分割成若干个小任务 ...

  4. ES6学习之数组扩展

    扩展运算符(...将数组分割为用逗号分割的参数序列) console.log(...[1,2,3]) //1 2 3 可替换数组的apply写法: function test(x,y,z){ cons ...

  5. js点滴知识(1) -- 获取DOM对象和编码

    在今天的工作中发现了一些小的问题,在网上查了一下,才知道自己的js才是冰山一角,以后要虚心向他人学习,要虚怀若谷. 发现一:js获取DOM对象与jquery的区别 先前总以为,二者是一样的,最近才知道 ...

  6. 关于KMeans的评价及聚簇结果的得到

    import numpy as npfrom sklearn.cluster import KMeansfrom sklearn import metricsimport matplotlib.pyp ...

  7. window下git,TortoiseGit安装,以及和github托管项目

    下载地址:http://msysgit.github.io/,安装时最好是先装git,再安装TortoiseGit. 一.git安装 1.第一步 2.第二步 3.第三步 4.第四步 5.第五步 6.第 ...

  8. cdh ntpdate 问题

    ntpdc -np 一个正常一个不正常

  9. k8s 基础 核心概念

    Pod pod是若干相关容器的集合,Pod包含的容器运行在同一台宿主机上,这些容器使用相同的网络命名空间,ip地址和端口,相互之间能通过localhost来发现和通信.另外,这些容器还可共享一块存储空 ...

  10. MQTT,XMPP,STOMP,AMQP,WAMP适用范围优缺点比较

    想要向服务器发送请求并获得响应?直接使用 HTTP 吧!非常简单.但是当需要通过持久的双向连接来通信时,如 WebSockets,当然你也有其它的选择. 这篇文章会简单扼要的解释 MQTT,XMPP, ...