I set up TYPO3 version 8.7.3 locally with XAMPP and I’m trying to use Fluid Powered TYPO3 for my project. Since I’m pretty new to this CMS, I followed the official documentation and installed the required extensions from the FluidTYPO3 GitHub repository. I got vhs, flux, and builder extensions installed successfully.
The Builder extension appears in my backend under Admin Tools with its own icon. However, when I try to access it by clicking the icon, I get this error message:
Sorry, the requested view was not found.
The technical reason is: No template was found. View could not be resolved for action "index" in class "FluidTYPO3\Builder\Controller\BackendController".
I’ve spent quite a bit of time searching for solutions online but haven’t found anything that specifically addresses this issue or provides clues on how to fix it. Has anyone encountered this before and knows how to resolve it?
had the same issue a few months back with the builder ext. first, check if typo3conf/ext/builder/Resources/Private/Templates/Backend/index.html actually exists - sometimes git clone doesn’t pull everything properly. also double-check your TypoScript setup includes the builder paths correctly. might need to manually register the template paths in localconf or AdditionalConfiguration.php.
Interesting issue! Is the builder extension actually compatible with TYPO3 8.7.3? Some FluidTYPO3 extensions are picky about versions. How did you install it - directly from Git or through Composer? The installation method can affect how template paths get configured.
This happens when the Builder extension’s template files go missing or get corrupted during install. The backend can’t find the Fluid templates it needs to show the interface. I’ve hit this exact problem with FluidTYPO3 extensions on older TYPO3 versions. Try a complete reinstall through Extension Manager - deactivate, uninstall, then reinstall from scratch. If that doesn’t fix it, manually check that Resources/Private/Templates/Backend/ exists in the builder extension folder and has the template files. Don’t forget to clear all caches after reinstalling so TYPO3 picks up the template paths.