I got interrested in Gibbon in Building the Education Team and installed it on NethServer, here is what I did:
EDIT 10.9.2018:
- Update to version 16.0.01
# Install php5.6 and mysql
yum -y install http://mirror.de-labrusse.fr/NethServer/7/x86_64/nethserver-stephdl-1.0.6-1.ns7.sdl.noarch.rpm
yum -y install http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
yum -y install unzip nethserver-mysql nethserver-php-scl
# Get Gibbon, move it to html folder and set rights
wget https://github.com/GibbonEdu/core/archive/v16.0.01.zip
unzip v16.0.01.zip
mv core-16.0.01 /var/www/html/gibbon
chown apache:apache -R /var/www/html/gibbon
# Create database and user
mysql
create database gibbon character set utf8 collate utf8_bin;
grant all privileges on gibbon.* to gibbon@localhost identified by 'SECRET';
exit;
Change php version to at least 7.1 (thanks to @robb and @stephdl) in “php settings” in web UI and browse to https://YOURNETHSERVER/gibbon
Enter localhost, gibbon, gibbon and the password defined earlier: “SECRET”
Follow the installation procedure, create your user and start testing gibbon…