ubuntu 16.04 and desktop
add support ubuntu 16.04
php version used 5.6.31 off ppa:ondrej/php (https://launchpad.net/~ondrej/+archive/ubuntu/php)
suhosin 100% working on ubuntu 14.04 and 16.04
solve bug desktop installation
variante tested and full working
Ubuntu Desktop 14.04 64 bit Xubuntu Desktop 14.04 64 bit Ubuntu Desktop 16.04 64 bit Xubuntu Desktop 16.04 64 bit
Hi,
Yep it can work on ubuntu 16.04 if you downgrade PHP, but we can't support that. We would more focus on supporting PHP 7.
Notice @andykimpe we never supported external repos and that's the main issue.
you have an error at line 470
current
if [[ "$VER" = "14.04" || $VER" = "16.04" ]]; then
should be
if [[ "$VER" = "14.04" || "$VER" = "16.04" ]]; then
same on line 1394