TYPO3 Exception 1711797936

TYPO3 13.1.0 - 01.05.2024

Installation Overview

Using the PAGEVIEW TypoScript element to display a content element:

EXT:my_sitepackage/Configuration/Sets/MySet/setup.typoscript
page = PAGE
page {
    10 = PAGEVIEW
    10 {
        paths {
            100 = EXT:site_package/Resources/Private/Templates/
        }
        // ...
    }
}
Copied!

There is a file called EXT:site_package/Resources/Private/Templates/pages/default.html.

The Issue

The error message
Could not find template source for "pages/default". Configured 
templateRootPaths: /var/www/html/vendor/myvendor/site-package/Resources/Private/Templates/
Copied!

Solution

The template name has to start with an upper case letter.

Rename EXT:site_package/Resources/Private/Templates/pages/default.html to EXT:site_package/Resources/Private/Templates/pages/Default.html.