Skip to content
Snippets Groups Projects
Commit 59ae8552 authored by Paul Ilea's avatar Paul Ilea
Browse files

[TASK] TYPO3 8 database configuration

parent 501b11e1
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,21 @@ $GLOBALS['TYPO3_CONF_VARS']['DB']['password'] = 'typo3';
$GLOBALS['TYPO3_CONF_VARS']['DB']['host'] = '127.0.0.1';
$GLOBALS['TYPO3_CONF_VARS']['DB']['port'] = '3306';
if (!isset($GLOBALS['TYPO3_CONF_VARS']['DB']['Connections'])) {
$GLOBALS['TYPO3_CONF_VARS']['DB']['Connections'] = [];
}
$GLOBALS['TYPO3_CONF_VARS']['DB']['Connections']['Default'] = [
'charset' => 'utf-8',
'dbname' => 'typo3',
'driver' => 'mysqli',
'host' => '127.0.0.1',
'password' => 'typo3',
'port' => 3306,
'user' => 'typo3',
'initCommands' => 'SET SESSION sql_mode=\'\'',
];
$typo_db = 'typo3';
$typo_db_username = 'typo3';
$typo_db_password = 'typo3';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment