HEX
Server: Apache
System: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
User: u90323915 (5560665)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /homepages/oneclick/moodle/2.6.0.1/3/scripts/config.php.in
<?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!