Attention
TYPO3 v8 has reached its end-of-life March 31st, 2020 and is not maintained by the community anymore. Looking for a stable version? Use the version switch on the top left.
There is no further ELTS support. It is recommended that you upgrade your project and use a supported version of TYPO3.
Default configuration¶
TYPO3 CMS comes with some default settings, which are defined in
file typo3/sysext/core/Configuration/DefaultConfiguration.php
.
Here is an extract of that file:
return [
'GFX' => [ // Configuration of the image processing features in TYPO3. 'IM' and 'GD' are short for ImageMagick and GD library respectively.
'thumbnails' => true,
'thumbnails_png' => true,
'gif_compress' => true,
'imagefile_ext' => 'gif,jpg,jpeg,tif,tiff,bmp,pcx,tga,png,pdf,ai,svg',
// ...
],
// ...
];
You will probably find it interesting to take a look at that file, which also contains values not displayed in the Install Tool and thus not easily available for modification.