3、当用户登录后(使用admin/admin登录)页面上面为会安全提示,如下:
There are security warnings for your consideration. See details on file: D:\Program files\VertrigoServ
\www\testlink\logs\config_check.txt.
To disable any reference to these checkings,
set $tlCfg->config_check_warning_mode = 'SILENT';
解决办法:
在....\VertrigoServ\www\testlink\ 根目录下找到config.inc.php 文件打开,
将$tlCfg->config_check_warning_mode = 'FILE';
改为
/* [LOGGING] */
$tlCfg->config_check_warning_mode = 'SILENT';
附录1:安装XAMPP后apache不能启动解决方法
在安装XAMPP之后,有的朋友会发现apache无法启动,并且返回类似于下面的错误信息。本篇经验即要解决这个问题。9:52:41 AM [Apache] This may be due to a blocked port, missing dependencies, 9:52:41 AM [Apache] improper privileges, a crash, or a shutdown by another method.9:52:41 AM [Apache] Press the Logs button to view error logs and check9:52:41 AM [Apache] the Windows Event Viewer for more clues9:52:41 AM [Apache] If you need more help, copy and post this9:52:41 AM [Apache] entire log window on the forums
1\
点击XAMPP右侧的Netstat按钮,看一下是不是有哪个程序正在使用80或者443端口。在我的例子当中,可以看到443端口没有被占用,而80端口被系统占用。