ubuntu里安装testlink1.9.14遇到的那些坑

来源:互联网 发布:学习弹钢琴的软件 编辑:程序博客网 时间:2024/05/29 09:02

解决方法就是:

vi config.inc.php

将$tlcfg->log_path = '/var/testlink/logs/' ;

改成logs文件的所在位置,我的是$tlcfg->log_path = '/var/www/testlink/logs';

将$tlcfg->repositoryPath='/var/testlink/upload_area/' ;

改成upload_area文件的所在位置,我的是 $tlcfg->repositoryPath='/var/www/testlink/upload_area/' ;

如果修改完成之后,显示

logs directory is writable(by user used to run webserver process) failed

upload_area directory is writable(by user used to run webserver process) failed

查看文件夹的权限

 ls -ld 文件夹

如果没有的话就修改下权限:

chmod 777 logs

chmod 777 upload_area

如果顺利的话,如果最后一步还是有问题:

TestLink couldn't write the config file. Please copy the following into the ../config_db.inc.php file:
<?php
// Automatically Generated by TestLink Installer
define('DB_TYPE', 'mysql');
define('DB_USER', 'testlink');
define('DB_PASS', 'mypassword');
define('DB_HOST', 'localhost');
define('DB_NAME', 'testlink');
define('DB_TABLE_PREFIX', '');
?>

Once that's been done, you can log into TestLink by pointing your browser at your TestLink site.

就在testlink目录下创建config_db.inc.php文件,并拷贝上面提示的信息到php里就可以啦

vi config_db.inc.php

重新打开testlink的地址就可以啦。


发现页面是英文,然后在设置里修改locale改成是中文简体,点击保存,发现首页还是英文,

就需要修改配置文件config.inc.php

$tlCfg->default_language = 'zh_CN';


重新打开testlink地址就是中文,

登录页面有警告

方法就是根据提示信息来:在config.inc.php里

将$tlCfg ->config_check_warning_mode ='SILENT';

重新打开testlink就可以了^_^

0 0
原创粉丝点击