Testlink環境搭建
阿新 • • 發佈:2018-06-09
ref directory 分享 cor smt into 錯誤總結 from life
下載安裝
壓縮版純凈安裝
下載壓縮版純凈testlink,自己配置mysql , Apache
壓縮版純凈安裝
下載地址:http://sourceforge.net/projects/testlink/files/TestLink%201.9/
我這裏是已經搭建好了Apache + php + mysql的環境,只需要將下載下來的testlink放入到Apache的網站根目錄下,訪問安裝。
下載完解壓後,放置到Apache的文檔目錄,我這裏是D:\webRoot。
瀏覽器輸入:localhost:8080/testlink_1.9.13/index.php
,點擊new installation
,根據提示安裝。
集成環境安裝
可以使用bitnami-testlink的集成安裝包,內帶Apache,mysql,phpadmin。
Bitnami的集成安裝程序,直接下載雙擊可視化界面安裝,自帶了Apache,mysql,php。
安裝錯誤總結
錯誤1
checking max.execution time
修改php安裝目錄中(E:\php-5.6.12-Win32-VC11-x64)php.ini中的max_execution_time時間,修改為120,大概在372行
max_execution_time = 120
錯誤2
maximum session idle time before timeout
修改php安裝目錄中(E:\php-5.6.12-Win32-VC11-x64)php.ini中的
session.gc_maxlifetime = 2400
錯誤3
checking if testlink/logs/ directory exists
checking if upload_area directory exists
打開testlink下的config.inc.php文件:
修改logs路徑
$tlCfg->log_path = '[tesklink安裝目錄]/logs/';
修改upload_area路徑
$g_repositoryPath = '[tesklink安裝目錄]/upload_area/';
安裝完後,提示配置mail:
* copy from config.inc.php, [SMTP] Section into custom_config.inc.php. * complete correct data regarding email addresses and mail server.
完成後,跳轉到http://localhost:8080/testlink_1.9.13/login.php
相關警告
顯示的警告根據提示修改。
Testlink環境搭建