skip to Main Content

Moodle Config file using docker env – PHP

So I have a docker image for moodle, and it includes a config.php file that can "automate" connection to its database. <?php // Moodle configuration file unset($CFG); global $CFG; $CFG = new stdClass(); $CFG->dbtype = 'pgsql'; $CFG->dblibrary = 'native'; $CFG->dbhost…

VIEW QUESTION

Installing moodle on Ubuntu

SO I'm trying to install Moodle using Ubuntu and I followed the instructions from https://www.linode.com/docs/guides/how-to-install-moodle-on-ubuntu-server-2004/ , but when I type localhost/moodle on my browser, it just displays the PHP code which I'll add. I should be displayed with the Moodle…

VIEW QUESTION
Back To Top
Search