Trabla: Install FormaLMS v1.4.2 on Windows 7 localhost XAMPP 5.6.28 - opensource PHP e-Learning LMS
Forma Lms is an open-source, web-based elearning platform (Learning Management System - LMS), used to manage and deliver online training courses.
It's based on a network of companies that support its development and it's focused on corporate training needs, rather than on academic needs as many other open-source projects.
Official Site - http://www.formalms.org/
Solving:
Watch on YouTube
SQL script to create database and user for FormaLMS v1.4.2, used in tutorial:
CREATE DATABASE `forma`
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'forma-owner'@'localhost';
CREATE USER 'forma-owner'@'127.0.0.1';
CREATE USER 'forma-owner'@'::1';
SET PASSWORD
FOR 'forma-owner'@'localhost' = PASSWORD('forma123$%');
SET PASSWORD
FOR 'forma-owner'@'127.0.0.1' = PASSWORD('forma123$%');
SET PASSWORD
FOR 'forma-owner'@'::1' = PASSWORD('forma123$%');
GRANT ALL PRIVILEGES ON
`forma`.* TO 'forma-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`forma`.* TO 'forma-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`forma`.* TO 'forma-owner'@'::1' WITH GRANT OPTION;
No comments:
Post a Comment