Gitlist安装报错

Gitlist installation error

我只是安装 gitlist 以跟随我的 git 存储库,当我启动时我会看到该页面 localhost/gitlist:

get('date', 'timezone')) { date_default_timezone_set($config->get('date', 'timezone')); } $app = require 'boot.php'; $app->run(); 

我无法解决问题。有人可以帮助我吗?

我遇到了同样的问题。我是这样解决的:

1- 确保您 php7 正确安装并且正确安装了 apache2 模块 enabled/configured。我使用 ubuntu,对我来说已经足够了:

sudo apt-get -y install php7.0 libapache2-mod-php7.0

2- 确保您的 gitlist 文件夹具有网络用户的正确权限。我使用 apache2(.4):

sudo chown -R www-data:www-data <path-to-gitlist>

3- 同时检查您的 gitlist config.ini 文件,您指向包含 git 存储库的文件夹,而不是 git 存储库:

repositories[]= '/home/user/repositories'

4- 重新启动 apache 服务:

systemctl restart apache2

希望对您有所帮助。