From 31c2048114a439e4fadab252a27f3e8d4d4028ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Fri, 17 Apr 2020 11:58:16 +0200 Subject: [PATCH] Fix forms being unavailable in backend --- config/sites/ep-reisen/config.yaml | 11 ++++------- .../ext/ep_theme/Configuration/Forms/FormSetup.yaml | 4 ---- .../TypoScript/Extensions/Form.typoscript | 4 ++++ 3 files changed, 8 insertions(+), 11 deletions(-) diff --git a/config/sites/ep-reisen/config.yaml b/config/sites/ep-reisen/config.yaml index e10539a2..11d04ecb 100644 --- a/config/sites/ep-reisen/config.yaml +++ b/config/sites/ep-reisen/config.yaml @@ -1,14 +1,11 @@ base: / baseVariants: - - base: 'https://eptypo3.burn.dpn' + base: 'https://eptypo3.ddev.site' condition: 'applicationContext == "Development"' - - base: 'https://schnee-event.burn.dpn' + base: 'https://schnee-event.ddev.site' condition: 'applicationContext == "Development/Skimax"' - - - base: 'https://ep-reisen.ddev.site' - condition: 'applicationContext == "Development/Ddev"' disableStaticFileCache: true errorHandling: - @@ -130,8 +127,8 @@ routeEnhancers: date_to: type: PassthroughMapper requirements: - product_uid: '\d' - hotel_uid: '\d' + product_uid: \d + hotel_uid: \d date_from: '\d{4}\-\d{2}\-\d{2}' date_to: '\d{4}\-\d{2}\-\d{2}' BookingLinkPlugin: diff --git a/public/typo3conf/ext/ep_theme/Configuration/Forms/FormSetup.yaml b/public/typo3conf/ext/ep_theme/Configuration/Forms/FormSetup.yaml index ec06bc77..255e9b4e 100644 --- a/public/typo3conf/ext/ep_theme/Configuration/Forms/FormSetup.yaml +++ b/public/typo3conf/ext/ep_theme/Configuration/Forms/FormSetup.yaml @@ -2,12 +2,8 @@ TYPO3: CMS: Form: persistenceManager: - allowedFileMounts: - 10: '1:/user_upload/Formulare/' allowedExtensionPaths: 10: EXT:ep_theme/Resources/Private/Forms/ - allowSaveToExtensionPaths: false - allowDeleteFromExtensionPaths: false prototypes: standard: diff --git a/public/typo3conf/ext/ep_theme/Configuration/TypoScript/Extensions/Form.typoscript b/public/typo3conf/ext/ep_theme/Configuration/TypoScript/Extensions/Form.typoscript index 02cf42fa..190f7e6a 100644 --- a/public/typo3conf/ext/ep_theme/Configuration/TypoScript/Extensions/Form.typoscript +++ b/public/typo3conf/ext/ep_theme/Configuration/TypoScript/Extensions/Form.typoscript @@ -7,3 +7,7 @@ plugin.tx_form.view { plugin.tx_form.settings.yamlConfigurations { 100 = EXT:ep_theme/Configuration/Forms/FormSetup.yaml } + +module.tx_form.settings.yamlConfigurations { + 100 = EXT:ep_theme/Configuration/Forms/FormSetup.yaml +}