TA的每日心情 | 慵懒 2017-5-6 13:37 |
---|
签到天数: 9 天 连续签到: 1 天 [LV.3]测试连长
|
参见 http://bbs.51testing.com/thread-886238-1-1.html
根据方法已经解决此问题
可以在testlink\lib\results\printDocument.php中找到“$docText .= renderEOF();”这句。在此句之前加入
####################################################################################
# change relative image paths to absolute image paths
# src="/ => src="http(s)://example.com/
####################################################################################
# fetch protocol and domainname
if($_SERVER["SERVER_PORT"]=='443'){
$url_host = "https://".$_SERVER["HTTP_HOST"];
}elseif($_SERVER["SERVER_PORT"]=='80'){
$url_host = "http://".$_SERVER["HTTP_HOST"];
}else{
$url_host = $_SERVER["HTTP_HOST"].":".$_SERVER["SERVER_PORT"];
}
if(substr($url_host, -1)!='/'){
$url_host.= '/';
}
$xPattern = "/src=\"\//si";
$xValue = "src=\"".$url_host;
$docText = preg_replace($xPattern, $xValue, $docText);
####################################################################################
可参考http://www.teamst.org/forum/view ... 3583&hilit=word |
|