Skip to content

Instantly share code, notes, and snippets.

@oralinnet
Created December 8, 2020 16:50
Show Gist options
  • Save oralinnet/278e4c731d036b738bd5be52f0d4124d to your computer and use it in GitHub Desktop.
Save oralinnet/278e4c731d036b738bd5be52f0d4124d to your computer and use it in GitHub Desktop.
Install Forma Learning Management System (LMS) On Ubuntu
If youu need Forma LMS Setup in Linux contact with me:
Skype: rakibul.raju90
Telegram:+880 1736863870
WhatsApp:+880 1736863870
Email:[email protected]
https://about.me/oralin/
===========================================================================================================
sudo apt install apache2
apache2 -v
sudo service apache2 start
sudo systemctl enable apache2
# Visit: http://localhost/
# Install MySQL & check version, start,stop & restart Apache
sudo apt install mysql-server
sudo mysql_secure_installation
mysql --version
# Install PHP & check version
sudo apt-get update && apt-get upgrade
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt install php7.0 libapache2-mod-php7.0 php7.0-common php7.0-mysql php7.0-gmp
cd /var/www/html
sudo wget -c "https://netcologne.dl.sourceforge.net/project/forma/version-2.x/formalms-v2.3.0.2.zip" -O formalms-v2.3.0.2.zip
sudo unzip formalms-v2.3.0.2.zip
sudo a2ensite forma.conf
sudo a2enmod rewrite
sudo systemctl restart apache2.service
http://localhost
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment