Skip to content

Commit ec7ab6f

Browse files
authored
CONFG
1 parent 943b0ae commit ec7ab6f

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

general/releases/4.5/4.5.5.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,34 @@ import { ReleaseNoteIntro } from '@site/src/components/ReleaseInformation';
8585
## Security fixes
8686

8787
A number of security related issues were resolved. Details of these issues will be released after a period of approximately one week to allow system administrators to safely update to the latest version.
88+
89+
<?php // Moodle configuration file
90+
91+
unset($CFG);
92+
global $CFG;
93+
$CFG = new stdClass();
94+
95+
$CFG->dbtype = 'mariadb';
96+
$CFG->dblibrary = 'native';
97+
$CFG->dbhost = 'localhost';
98+
$CFG->dbname = 'mysql';
99+
$CFG->dbuser = 'root';
100+
$CFG->dbpass = '';
101+
$CFG->prefix = 'mdl_';
102+
$CFG->dboptions = array (
103+
'dbpersist' => 0,
104+
'dbport' => '',
105+
'dbsocket' => '',
106+
'dbcollation' => 'utf8mb4_general_ci',
107+
);
108+
109+
$CFG->wwwroot = 'https://localhost/anticonceptivos';
110+
$CFG->dataroot = 'C:\\Users\\Marcus\\Downloads\\MoodleWindowsInstaller-latest-405\\server\\moodledata';
111+
$CFG->admin = 'admin';
112+
113+
$CFG->directorypermissions = 0777;
114+
115+
require_once(__DIR__ . '/lib/setup.php');
116+
117+
// There is no php closing tag in this file,
118+
// it is intentional because it prevents trailing whitespace problems!

0 commit comments

Comments
 (0)