-
Notifications
You must be signed in to change notification settings - Fork 19
/
development.php
83 lines (83 loc) · 3.26 KB
/
development.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
return [
'SYS' => [
// Debug
'displayErrors' => 1,
'devIPmask' => '*',
'sqlDebug' => 1,
'enableDeprecationLog' => 'file',
'exceptionalErrors' => E_WARNING | E_USER_ERROR | E_RECOVERABLE_ERROR | E_DEPRECATED | E_USER_DEPRECATED,
'systemLogLevel' => 0,
'caching' => [
'cacheConfigurations' => [
// Uncommenting the two lines below will slow down request times dramatically
// 'cache_core' => array(
// 'backend' => \TYPO3\CMS\Core\Cache\Backend\NullBackend::class,
// ),
// 'fluid_template' => array(
// 'backend' => \TYPO3\CMS\Core\Cache\Backend\NullBackend::class,
// ),
'cache_hash' => array(
'backend' => \TYPO3\CMS\Core\Cache\Backend\NullBackend::class,
),
'cache_pages' => array(
'backend' => \TYPO3\CMS\Core\Cache\Backend\NullBackend::class,
),
'cache_pagesection' => array(
'backend' => \TYPO3\CMS\Core\Cache\Backend\NullBackend::class,
),
'cache_phpcode' => array(
'backend' => \TYPO3\CMS\Core\Cache\Backend\NullBackend::class,
),
'cache_runtime' => array(
'backend' => \TYPO3\CMS\Core\Cache\Backend\TransientMemoryBackend::class,
),
'cache_rootline' => array(
'backend' => \TYPO3\CMS\Core\Cache\Backend\NullBackend::class,
),
'cache_imagesizes' => array(
'backend' => \TYPO3\CMS\Core\Cache\Backend\NullBackend::class,
),
'l10n' => array(
'backend' => \TYPO3\CMS\Core\Cache\Backend\NullBackend::class,
),
'extbase_object' => array(
'backend' => \TYPO3\CMS\Core\Cache\Backend\NullBackend::class,
),
'extbase_reflection' => array(
'backend' => \TYPO3\CMS\Core\Cache\Backend\NullBackend::class,
),
'extbase_typo3dbbackend_tablecolumns' => array(
'backend' => \TYPO3\CMS\Core\Cache\Backend\NullBackend::class,
),
'extbase_typo3dbbackend_queries' => array(
'backend' => \TYPO3\CMS\Core\Cache\Backend\NullBackend::class,
),
'extbase_datamapfactory_datamap' => array(
'backend' => \TYPO3\CMS\Core\Cache\Backend\NullBackend::class,
),
]
]
],
'BE' => [
'debug' => true,
// Convenience
'sessionTimeout' => 60 * 60 * 24 * 365 // One year!
],
'FE' => [
'debug' => true,
],
'MAIL' => [
'transport' => 'mbox',
'transport_mbox_file' => dirname(PATH_site) . '/var/log/sent-mails.log',
],
'LOG' => [
'writerConfiguration' => [
\TYPO3\CMS\Core\Log\LogLevel::DEBUG => [
\TYPO3\CMS\Core\Log\Writer\FileWriter::class => [
dirname(PATH_site) . '/var/log/typo3-default.log'
]
]
]
],
];