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