First Step:
git remote add upstream https://github.com/moodle/moodle.git
Second Step:
vim update.sh
#!/bin/bash
git fetch upstream
for BRANCH in MOODLE_{31..37}_STABLE master;
do
git push origin refs/remotes/upstream/$BRANCH:refs/heads/$BRANCH
done
Devlion experience for Developers
Moodle Support
git remote add upstream https://github.com/moodle/moodle.git
vim update.sh
#!/bin/bash
git fetch upstream
for BRANCH in MOODLE_{31..37}_STABLE master;
do
git push origin refs/remotes/upstream/$BRANCH:refs/heads/$BRANCH
done
After upgrade Moodle from 3.6 to 3.7 disappeared button “Add blocks”.
Continue reading “Moodle – Add block doesn’t appear after upgrade”This video will explain how to enable VPL with JAVA libraries on Moodle 3.6 (in Hebrew)
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”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';
Simple Bash script to make