##Magento errors and causes
###Error: Not valid template file
CRIT (2): Not valid template file: frontend/base/default/template/path/to/template.phtml
causes:
Incorrect template path.
wrong:
<block type="core/template" name="cj_udo" template="app/design/frontend/base/default/template/path/to/template.phtml" />
Right:
<block type="core/template" name="cj_udo" template="cj/udo.phtml" />
Not found template fallback.
wrong:
$tree tree app/design/frontend/base/default/template/path/
├── folder-name
│ └── another-folder
│ └── renderer
│ ├── boolean.phtml
│ ├── date.phtml
│ ├── file.phtml
│ ├── image.phtml
│ ├── multiline.phtml
│ ├── multiselect.phtml
│ ├── select.phtml
│ ├── text.phtml
│ └── textarea.phtml
Right:
$tree tree app/design/frontend/base/default/template/path/
├── folder-name
│ └── another-folder
│ └── renderer
│ ├── boolean.phtml
│ ├── date.phtml
│ ├── file.phtml
│ ├── image.phtml
│ ├── multiline.phtml
│ ├── multiselect.phtml
│ ├── select.phtml
│ ├── text.phtml
│ └── textarea.phtml
├── to
│ └── template.phtml