Install eFrontLMS v3.6.15.5 on Windows 7 localhost XAMPP 5.6.28 - opensource PHP LMS eLearning

Trabla: Install eFrontLMS v3.6.15.5 on Windows 7 x64 localhost XAMPP 5.6.28 - opensource PHP LMS eLearning


Install eFrontLMS v3.6.15.5 on Windows 7 localhost XAMPP 5.6.28 - opensource PHP LMS eLearning


eFront is an eLearning platform (also known as a Course Management System (CMS), or Learning Management Systems (LMS), or Virtual Learning Environment (VLE)). eFront comes in a number of editions, from an open-source edition to the latest eFrontPro edition.
eFront is designed to assist with the creation of online learning communities while offering various opportunities for collaboration and interaction through an icon-based user interface. The platform offers tools for content creation, tests building, assignments management, reporting, internal messaging, forum, chat, surveys, calendar and others. It is a SCORM 1.2 certified and SCORM 2004 / 4th edition compliant system translated in 40 languages.
Official Site -  https://www.efrontlearning.com

Solving:



Watch on YouTube

1.  PHP.ini changes:
- set max_execution_time = 600
- uncomment ( remove ; ) soap extension

2. SQL script to create database and user for eFrontLMS v3.6.15.5, used in tutorial:

CREATE DATABASE `efront` 
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;

CREATE USER 'efrontowner'@'localhost'; 
CREATE USER 'efrontowner'@'127.0.0.1';
CREATE USER 'efrontowner'@'::1';

SET PASSWORD 
FOR 'efrontowner'@'localhost' = PASSWORD('efront123$%');
SET PASSWORD 
FOR 'efrontowner'@'127.0.0.1' = PASSWORD('efront123$%');
SET PASSWORD 
FOR 'efrontowner'@'::1' = PASSWORD('efront123$%');


GRANT ALL PRIVILEGES ON 
`efront`.* TO 'efrontowner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON 
`efront`.* TO 'efrontowner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON 
`efront`.* TO 'efrontowner'@'::1' WITH GRANT OPTION;



No comments:

Post a Comment