Mini Shell
<?php // Moodle configuration file
unset($CFG);
global $CFG;
$CFG = new stdClass();
$CFG->dbtype = 'mariadb';
$CFG->dblibrary = 'native';
$CFG->dbhost = 'localhost';
$CFG->dbname = 'ccpacth_Moodle';
$CFG->dbuser = 'Moodle';
$CFG->dbpass = '041853671!';
$CFG->prefix = 'mdl_';
$CFG->dboptions = array (
'dbpersist' => 0,
'dbport' => 3306,
'dbsocket' => '',
'dbcollation' => 'utf8_general_ci',
);
$CFG->wwwroot = 'https://ccp.ac.th/moodle';
$CFG->dataroot = '/var/www/vhosts/ccp.ac.th/moodledata';
$CFG->admin = 'admin';
$CFG->directorypermissions = 0777;
require_once(__DIR__ . '/lib/setup.php');
// There is no php closing tag in this file,
// it is intentional because it prevents trailing whitespace problems!
Zerion Mini Shell 1.0