Bug #82033
Updated by RVVN no-lastname-given over 7 years ago
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 as mentioned in Form documentation (source : https://docs.typo3.org/typo3cms/extensions/form/Concepts/FrontendRendering/Index.html#render-through-fluidtemplate-without-controller ) like this : <pre> 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 } } </pre> I get the following exception from Extbase Exbase RequestBuilder class. <pre> #1289843275: "extensionName" is not properly configured. Request can't be dispatched! </pre> 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 : <pre> url/of/form/page/?tx__%5Baction%5D=perform&tx__%5Bcontroller%5D=Standard&cHash=ef4c51cd374b8ae9622a59f6b467f49b#testForm </pre> Any help ?