TYPO3 Exception 1328709784

Note

Below, the TYPO3 community may have provided additional information or solutions for this exception. However, these may or may not apply to your particular case. If you can provide more information, you should come back here and add your experience and solution steps to this issue once you have resolved it.

General TYPO3 troubleshooting tips can be found in the section "Troubleshooting" of the menu, and live support is available in the TYPO3 Slack channel #typo3-cms. (See How to get your TYPO3 Slack account.)

To add your experience, click "Edit on GitHub" above and follow the "Edit on GitHub" workflow. Also check out our tip on Coding Style and reST.

The finisher preset identified by "xxx" could not be found, or the implementationClassName was not specified.

This error is related to EXT:form.

You probably added a custom finisher to your current form configuration yaml file, but forgot to register the finisher in base config of your form setup.

Please ensure that you add your newly created form finisher to config section: TYPO3.CMS.Form.prototypes.standard.finishersDefinition

And that yaml is loaded to the plugin and/or module form settings: plugin.tx_form.settings.yamlConfigurations

It could also be the case that you correctly registered the finisher in the base config of your form setup (e.g. in the root template of your site) but the registration will not work because there might be a syntax error in the typoscript (e.g. a missing closing curly brace from an open code-block); in that case, the registration will not succeed and hence, the form framework is not able to find the finisher. This will most likely happen during a major upgrade of TYPO3 when there are typically bigger changes in your typoscript setup.