TestLink简明配置手册

Hope ·
更新时间:2024-11-13
· 669 次阅读

配置文件概述      所有的配置参数都在 config.inc.php 文件以及config.inc.php 所包含的文件中. 以下是该版本配置文件的列表 Testlink配置文件config.inc.php(在Testlink安装目录下),找到下面的位置。

    config.inc.php 主配置文件, 它包含其他的配置文件. 该文件里列出了配置参数的默认值.     config_db.inc.php 包含访问数据库所需要的参数. 该文件在TestLink被安装或者升级时自动创建. 一般情况下, 我们不需要手动修改它.     custom_config.inc.php 如果想修改config.inc.php文件中的默认值, 可以在该文件中设置. 即该文件中设置的值会覆盖config.inc.php中的值. 这样做的好处是你的配置信息可以直接复制到升级之后的版本中.     /cfg/<bug_tracker>.cfg.php 设置缺陷跟踪工具的数据库访问参数     /cfg/const.inc.php 定义常量以及不允许修改的变量     /gui/templates/input_dimensions.conf 代替HTML输入字段属性(如 maxlength 和 size等) 的硬编码,     /cfg/tl_fckeditor_config.js 设置fckeditor组建的配置

打开Testlink配置文件config.inc.php或custom_config.inc.php(在Testlink安装目录下),找到下面的位置。

(红色文字:表示需要修改的方。

蓝色文字:对需要修改的地方的解释说明。)

// ---------------------------------------------------------------------------- /** [SMTP] */

// Developer Note: // these config variable names has been choosed to maintain compatibility // with code taken from Mantis. // // SMTP server Configuration ("localhost" is enough in the most cases) $g_smtp_host        = 'mailserver'; # SMTP server MUST BE configured(SMTP服务器地址,必须配置)

# Configure using custom_config.inc.php $g_tl_admin_email     ='123@123.com'; # for problem/error notification(管理员账户的邮件地址,主要接收发生的一些问题,或错误,等信息) $g_from_email         ='123@123.com'; # email sender(发送邮件的邮件地址) $g_return_path_email ='123@123.com';(具体用处未知,和sender保持一致即可)

# Urgent = 1, Not Urgent = 5, Disable = 0 $g_mail_priority =5;  (发送邮件的优先级,设为5)

# Taken from mantis for phpmailer config define ("SMTP_SEND",2); $g_phpMailer_method = SMTP_SEND;

// Configure only if SMTP server requires authentication $g_smtp_username    = '123'; # user(用于发送邮件的账户的用户名) $g_smtp_password    = '123456'; # password(用于发送邮件的账户的密码)

Testlink汉化

在config.inc.php或custom_config.inc.php文件中修改如下

$tlCfg->default_language = 'zh_CN';

$tlCfg->config_check_warning_mode = 'SILENT';



testlink

需要 登录 后方可回复, 如果你还没有账号请 注册新账号