‪TYPO3CMS  9.5
FactoryConfiguration.php
Go to the documentation of this file.
1 <?php
8 return [
9  'BE' => [
10  'explicitADmode' => 'explicitAllow',
11  'loginSecurityLevel' => 'normal',
12  ],
13  'DB' => [
14  'Connections' => [
15  'Default' => [
16  'charset' => 'utf8',
17  'driver' => 'mysqli',
18  ],
19  ],
20  ],
21  'FE' => [
22  'loginSecurityLevel' => 'normal',
23  ],
24  'SYS' => [
25  'sitename' => 'New TYPO3 site',
26  'features' => [
27  'unifiedPageTranslationHandling' => true,
28  'newTranslationServer' => true,
29  ],
30  ],
31 ];