Bug #82033
openextbase parameters in FLUIDTEMPLATE : configuration lost for extension Form
0%
Description
Hi,
I have a formvh:render ViewHelper in a Fluid template. I created a simple FLUIDTEMPLATE content element in typoscript and apply extbase parameters according to Form documentation (source : https://docs.typo3.org/typo3cms/extensions/form/Concepts/FrontendRendering/Index.html#render-through-fluidtemplate-without-controller ) like this :
page.999 = COA_INT page.999 { 10 = FLUIDTEMPLATE 10 { file = path/to/fluid/template/file extbase.pluginName = Form extbase.controllerExtensionName = Formframework extbase.controllerName = FormFrontend extbase.controllerActionName = perform } }
I get the following exception from Extbase RequestBuilder class.
#1289843275: "extensionName" is not properly configured. Request can't be dispatched!
The configuration retrieved by loadDefaultValues function doesn't contain 'extensionName' nor 'pluginName' keys.
However the configuration is OK just after $configurationManager->setConfiguration(...) and before calling RequestBuilder->build().
If I omit the FLUIDTEMPLATE extbase parameters, the resulting generated form action misses plugin and controller, as following :
url/of/form/page/?tx__%5Baction%5D=perform&tx__%5Bcontroller%5D=Standard&cHash=ef4c51cd374b8ae9622a59f6b467f49b#testForm
Any help ?