Rev 1474 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
<?php // Moodle configuration fileunset($CFG);global $CFG;$CFG = new stdClass();$CFG->dbtype = 'mysqli';$CFG->dblibrary = 'native';$CFG->dbhost = 'localhost';$CFG->dbname = 'moodle4dev_db';$CFG->dbuser = 'moodle4dev_user';$CFG->dbpass = '0102.Moodle4-dev.&#.caed';$CFG->prefix = 'mdl_';$CFG->dboptions = array('dbpersist' => 0,'dbport' => 3306,'dbsocket' => '/var/run/mysqld/mysqld.sock','dbcollation' => 'utf8mb4_unicode_ci',);$CFG->wwwroot = 'https://moodle4-dev.leaderslinked.com';$CFG->dataroot = '/var/www/moodledata-moodle4-dev';$CFG->admin = 'admin';$CFG->directorypermissions = 0777;// Forzar tema específico (descomenta la línea que necesites)://$CFG->theme = 'boost'; // Para usar el tema Boost// $CFG->theme = 'classic'; // Para usar el tema Classic$CFG->theme = 'universe'; // Para usar el tema Universe padre//$CFG->theme = 'universe_child'; // Para volver al tema Universe Child// Desactivar cachés temporalmente para desarrollo$CFG->cachejs = false;$CFG->themedesignermode = true;require_once(__DIR__ . '/lib/setup.php');// There is no php closing ta