Questions tagged [moodle]

Moodle is an open source learning management system (LMS) written in PHP.

Moodle is an Open Source Course Management System (CMS), also known as a Learning Management System (LMS) or a Virtual Learning Environment (VLE). It has become very popular among educators around the world as a tool for creating online dynamic web sites for their students. To work, it needs to be installed on a web server somewhere, either on one of your own computers or one at a web hosting company.

Originally developed by Martin Dougiamas in Australia, it is used world-wide by many places of learning.

According to Moodle.org's stats, as of February 2013, there are over 77,000 registered sites using Moodle in over 225 countries, serving over 7 million courses with over 66 million users.

Useful links

Useful Developer Links

Distributions

3019 questions
0
votes
0 answers

Prevent website (Moodle) from auto deleting login cookie

My university's Moodle site (https://moodle.hu-berlin.de/login/index.php) asks me to log in every time I open the browser. It is rather annoying to have to click this every time, even with the browser autofilling my details. I think I would not have…
naf
  • 1
  • 1
0
votes
0 answers

Moodle - How Can I Delete when i click on button through mustache

require_once (__DIR__ . '/../../config.php'); global $DB,$CFG; $id = required_param('id', PARAM_INT); $table='blocks_table'; if ($id === 0) { echo 'data not present'; }else{ $DB->delete_records($table, array('id' => $id)); return…
0
votes
1 answer

Can't change max_input_vars in PHP

I need to raise the max_input_vars value in php for a moodle installation. However when I change the value in my php.ini file the moodle web installer still prompts: PHP setting max_input_vars must be at least 5000. phpinfo() shows: max_input_vars…
Ludawi
  • 3
  • 3
0
votes
0 answers

moodle program html and css is not responding as required

In moodle; I have added a label section and added html css code so that the frontent looks like overlay design. Program works fine in editor but doesnot respond likewise when uploaded to moodle. Its a simple overlay navigation. my code: main…
0
votes
1 answer

Moodle - Trying To Print Those Only Pictures Whose Message_attribute value is 2

require_once 'edit_form.php'; require_once __DIR__ . '/../../config.php'; class block_add extends block_base { public function init() { $this->title = 'Your Block'; } public function get_content() { global $DB, $OUTPUT, $USER; …
0
votes
1 answer

Data cache problem while table importing in new Moodle

I installed a new Moodle on a new Ubuntu server, then I export only a few tables, courses, questions, answers, users and their roles from the old Moodle database. I adapted the database to the new version and imported it into the new Moodle, after…
Zeroone
  • 49
  • 12
0
votes
1 answer

How to find Bitnami LMS powered by Moodle™ LMS Admin Credentials?

I've downloaded Bitnami Moodle (https://bitnami.com/stack/moodle/installer) 4.0.4-1 and installed it. According to this article (https://docs.bitnami.com/installer/apps/moodle/get-started/first-steps/) I need to click on "Open Terminal" button and…
0
votes
0 answers

Bootstrap and Moodle 4.0 Nasty behaviour (Accordion closes whole section)

since I updated to the Lern Management System Moodle 4.0 we have an issue with the Bootstrap Accordion. When you click on an element of the accordion, the whole area closes. Screenshot Do you have any idea how I can turn off this behavior? It seens…
0
votes
1 answer

how to send mobile push notification using google firebase

I'm using Moodle framework and I want to send message and notification through firebase any ideas about how to reach that ?
0
votes
1 answer

Hide all topics in a single course at once

I have to prepare courses for a new student year. All courses have to be reset and all topics within courses have to be hidden. Is there a way to acomplish this with a single command or at least with the single command within a course. Now I am…
adobro
  • 21
  • 4
0
votes
0 answers

Moodle : I Am Stuck in Getting Context id when i tried to insert image in database

require_once("$CFG->libdir/formslib.php"); class block_add_edit_form extends moodleform { public function definition() { global $CFG,$DB; $mform = $this->_form; $mform->addElement('text', 'id'); …
0
votes
1 answer

How to solve Moodle calculated question error

I am currently trying to update some of the calculated but when I do I get these error messages: More information about this error Debug info: Error code: ddlfieldnotexist Stack trace: line 672 of /lib/dml/moodle_database.php: dml_exception…
0
votes
0 answers

Moodle : trying to show image in footer

class block_image extends block_base { function init() { $this->title = get_string('pluginname', 'block_image'); } function applicable_formats() { return array('all' => true, 'tag' => false); } function specialization() { …
0
votes
1 answer

Why I cannot communicate with my s3 bucket from Moodle?

I have recently installed a Moodle 4.0.2. It's a bitnami installation and it came with Amazon S3 repository plugin installed as well. When I try to add a file to a course and use the filepicker, it shows all the buckets, but when I click on a…
Alberto
  • 1
  • 3
0
votes
0 answers

How to put the moodle in the docker of aws

I am currently using ubuntu for EC2 and I have tested by docker in my laptop, it works perfectly, but when it is in EC2 with my putty that is using docker as the container, it cannot connect the server, it is rds in aws as well. $ docker run -d…
黃孝彬
  • 11
  • 1