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
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
This video will explain how to enable VPL with JAVA libraries on Moodle 3.6 (in Hebrew)
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.
Continue reading “Moodle – Quiz report teacheroverview”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';
This plugin allow to teachers share: Courses, Activity/Resource, Topic/Module to other teachers.

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”UPDATE mdl_user
SET
username=CONCAT('username',mdl_user.id),
phone1=CONCAT('11111',mdl_user.id),
phone2=CONCAT('11111',mdl_user.id),
firstname=CONCAT('Name',mdl_user.id),
lastname=CONCAT('Last',mdl_user.id),
email=CONCAT('email',mdl_user.id,'@test.com'),
idnumber= CONCAT('1000',mdl_user.id,'2000')
WHERE id>=7
הקורס פורמט הוא סוג תוסף מיוחד במוודל שאחראי על פריסת מידע של הקורס במערכת moodle. דף הקורס (/course/view.php) יכול להיות במצב תצוגה ועריכה, קורס פורמט של moodle מציג פרקים, משאבים ופעילויות בצורה מוגדרת בהגדרות הקורס במערכת moodle. מנהל מערכת יכול להפעיל, לבטל או למחוק תבניות לקורסים.
Continue reading “Moodle – יצירת קורס פורמת חדש”