| Server IP : 217.160.0.95 / Your IP : 216.73.217.78 Web Server : Apache System : Linux infong-uk56 4.4.400-icpu-108 #2 SMP Wed Feb 11 11:51:01 UTC 2026 x86_64 User : u78863098 ( 10368940) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/oneclick/moodle/2.6.0.1/3/scripts/ |
Upload File : |
<?php // Moodle configuration file unset($CFG); global $CFG; $CFG = new stdClass(); $CFG->dbtype = '@@DB_MAIN_TYPE@@'; //$CFG->dblibrary = 'native'; $CFG->dbhost = '@@DB_MAIN_HOST_SCHEMA_PORT@@'; $CFG->dbname = '@@DB_MAIN_NAME@@'; $CFG->dbuser = '@@DB_MAIN_LOGIN@@'; $CFG->dbpass = '@@DB_MAIN_PASSWORD@@'; $CFG->prefix = '@@DB_MAIN_PREFIX@@'; $CFG->dboptions = array ( 'dbpersist' => 0, 'dbport' => '', 'dbsocket' => '@@DB_MAIN_HOST_PATH@@', ); $CFG->wwwroot = '@@ROOT_URL@@'; $CFG->dataroot = '@@ROOT_DIR@@/moodledata'; $CFG->admin = 'admin'; $CFG->directorypermissions = 0777; //Old APS Password Salt $CFG->passwordsaltalt1 = 'Y1&`po4hVG4?]UQr/b5XN0!P;W397[pg'; require_once(dirname(__FILE__) . '/lib/setup.php'); // There is no php closing tag in this file, // it is intentional because it prevents trailing whitespace problems!