This plugin allow to teachers share: Courses, Activity/Resource, Topic/Module to other teachers.
Continue reading “Moodle – Local Plugin Share With”Month: April 2019
Moodle – Course Format Picture Link
Course format plugin Picture Link was developed for Davidson Institute to allow to the teachers locate activities on background image.
Continue reading “Moodle – Course Format Picture Link”Moodle – How to install Moodle on Ubuntu 18.04
This post will show you how to install Moodle step by step by below details:
- OS: Ubuntu 18.04
- Web Server: Apache 2.4
- PHP 7.2
- Mysql 5.7
- Moodle 3.6
Moodle – Mysql query initiate new DB for Moodle
How to quickly create Data Base for Moodle Instance via CLI Mode (Less secure Not for Production Mode)
run: CREATE DATABASE moodle DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
//mysql 5.7 GRANT ALL PRIVILEGES ON moodle.* to 'youredbusername'@'localhost' identified by 'yourepassword';
//mysql 8 //Create User CREATE USER 'moodle'@'localhost' IDENTIFIED WITH mysql_native_password BY 'yourepassword'; //grand all permission GRANT ALL PRIVILEGES ON moodle.* TO 'moodle'@'localhost';
Ubuntu – How to open new Ubuntu 18.04 server on Digital Ocean
Step 1 (registrations)
Create account on digital ocean https://www.digitalocean.com
After registration click on create new droplet and choose Ubuntu 18.04
Continue reading “Ubuntu – How to open new Ubuntu 18.04 server on Digital Ocean”MOODLE – Backup and restore DB Orders
Export DB DUMP with ignore table mdl_logstore_standard_log
mysqldump moodle --ignore-table=mdl_logstore_standard_log | gzip > /backup/moodledb-date +\%Y-\%m-\%d-\%H-\%M-\%S
.sql.gz
Import DB DUMP
gunzip < moodledb_dump.sql.gz | mysql -u moodle -p moodle
import DB dump without log table
gzip -cd "./mydb.sql.gz" | sed -r '/INSERT INTO `(log_table_1|log_table_2|log_table_3|log_table_4)`/d' | gzip > "./mydb2.sql.gz"
Moodle – Query to copy logstore_standard_log to logstore_xapi_log
Query to Import all current moodle logs to xapi logs
TRUNCATEmdl_logstore_xapi_log
; INSERT INTOmdl_logstore_xapi_log
(id
,eventname
,component
,action
,target
,objecttable
,objectid
,crud
,edulevel
,contextid
,contextlevel
,contextinstanceid
,userid
,courseid
,relateduserid
,anonymous
,other
,timecreated
,origin
,ip
,realuserid
) select * from mdl_logstore_standard_log;