Created
December 8, 2020 16:50
-
-
Save oralinnet/278e4c731d036b738bd5be52f0d4124d to your computer and use it in GitHub Desktop.
Install Forma Learning Management System (LMS) On Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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