.. include:: /Includes.rst.txt .. _SystemSettings: ======================================= Setting up the settings for your system ======================================= We suggest to put the code into a :file:`config/system/custom.php` file. First add the following lines to :file:`config/system/additional.php`. .. code-block:: php if (is_file(__DIR__ . '/custom.php')) { require_once __DIR__ . '/custom.php'; } Then create a file :file:`config/system/custom.php` with following content: .. code-block:: php \TYPO3\CMS\Core\Cache\Frontend\PhpFrontend::class, 'backend' => \TYPO3\CMS\Core\Cache\Backend\FileBackend::class, 'groups' => [ 'all', 'system', ], 'options' => [ 'defaultLifetime' => 0, ], ]; You have ro replace the credentials for :php:`ADMIRALCLOUD_ACCESS_SECRET`, :php:`ADMIRALCLOUD_ACCESS_KEY` and :php:`ADMIRALCLOUD_CLIENT_ID` with your own. These will be send to you by AdmiralCloud via Mails and SMS. :php:`ADMIRALCLOUD_METADATA_FIELD_OVERRIDE_title`, :php:`ADMIRALCLOUD_METADATA_FIELD_OVERRIDE_alternative`, :php:`ADMIRALCLOUD_METADATA_FIELD_OVERRIDE_description`, and :php:`ADMIRALCLOUD_METADATA_FIELD_OVERRIDE_copyright` are optional settings. The part after the last underscore corresponds with the respective field name in TYPO3. After the equal sign fill in the name of the name of the Admiral Cloud field from which you like to pull the data. .. image:: ../Images/default-titles.png