Bug #20289
closedStatic TS not loaded
0%
Description
static/config.txt and static/setup.txt is not loaded, because they moved in version 0.5.0 to static/current/* . When using automaketemplate no content is rendered.
Work arround: edit ext_emconf.php and modify the paths.
(issue imported from #M10863)
Updated by Francois Suter over 15 years ago
Going to test the problem with the feedback given in the typo3.projects.typo3_4-3.general
Updated by Thomas Schröder over 15 years ago
For people who don't read the newsgroup here the details again:
- I excecuted the Update Wizard option "splitCscToMultipleTemplates"
- after that, css_styled_content was no more included as "Include static (from extensions)" in the Site-Template
- I added it again in the template but no content was mapped in frontend
- I modified in css_styled_content/ext_emconf.php the following paths:
static/constants.txt --> static/current/constants.txt
static/setup.txt --> static/current/setup.txt
- after that the content was rendered again, but not for all CEs ...
E.g. I did some tests with extention "typoscriptce", but in frontend I got only:
ERROR: Content Element type "typoscriptce_pi1" has no rendering definition!
- in 4.2 typoscriptce added some TS to css_styled_content for rendering:
- TypoScript added by extension "typoscriptce" #############################################
- Setting typoscriptce plugin TypoScript
tt_content.typoscriptce_pi1 = COA
tt_content.typoscriptce_pi1 {
10 = < lib.stdheader
20 = < plugin.tx_typoscriptce_pi1
}
In 4.3 this code was not present in Template Analyser (clicked at EXT:css_styled_content/static/) any more.
- I added the code manuall in my template and everything was ok (for this extention)
Updated by Francois Suter over 15 years ago
Fixed after moving back the current static files to EXT:css_styled_content/static/ instead of EXT:css_styled_content/static/current/ (rev 5333)