我目前正在尝试在Linux 16.04上安装CDash 2.4.0。起初我下载了最新版本:
cd /var/www/html
sudo git clone https://github.com/Kitware/CDash.git
然后我创建了config.local.php:
cd /var/www/html/CDash/config
sudo cp config.php config.local.php
之后我删除了/ *在此行之后不改变* /并添加了MySQL数据库的密码。
我还使用以下命令创建了cdash用户:
$ mysql -u root -p
<HERE YOU TYPE YOUR MYSQL ROOT PASSWORD>
mysql> create database cdash;
mysql> create user 'cdash'@'localhost' identified by '<YOUR_PASSWORD_GOES_HERE>';
mysql> grant all privileges on cdash.* to 'cdash'@'localhost' with grant option;
文档说明完成这些步骤后我应该能够注册打开/localhost/CDash/install.php,但我只看到一个空白页面。
我已经检查过我是否没有安装我在文档中看到的任何php扩展,但事实并非如此。
提前感谢您的解决方案。
答案 0 :(得分:1)
将CDash安装移动到/ var / www(/ var / www / CDash)
之类的目录创建CDash / public的软链接(ln -s / var / www / CDash / public / var / www / html / CDash)
安装php-mbstring软件包以及列为依赖项的软件包。
然后在浏览器中转到host / CDash / install.php。
我今天才想到这一点:)