After upgrade Moodle from 3.6 to 3.7 disappeared button “Add blocks”.
Kiril
Moodle – How to enable VPL with Java Unit test
This video will explain how to enable VPL with JAVA libraries on Moodle 3.6 (in Hebrew)
Kiril
Moodle – Quiz report teacheroverview
Quiz dashboard (report) displaying charts of student’s progress and grades that enable filtering of student’s progress table for actions like messaging and grouping.
Kiril
Moodle – SSL balancing problem
When server have balancing and balancing do not pass all request headers to the server you should enable SSL in header. Add to the top of the config.php file:
$_SERVER['HTTPS'] = 'On';
Kiril
Moodle – Local Plugin Share With
This plugin allow to teachers share: Courses, Activity/Resource, Topic/Module to other teachers.

Kiril
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.
Kiril
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
Kiril
Moodle – Mysql query initiate new DB for Moodle
How to create Data Base for Moodle Instance via CLI Mode
run: CREATE DATABASE moodle DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
GRANT ALL PRIVILEGES ON moodle.* to 'youredbusername'@'localhost' identified by 'yourepassword';
Kiril
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

Kiril
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