Ist denn keiner da der helfen kann ?
Mittlerweile kommt der Fehler nicht mehr nun wird auch schon ein Teil des TypoScripts umgesetzt:
Typoscript-Code:
1: 2: 3: 4: 5: 6: 7:
| seite = PAGE seite { typeNum = 0 bodyTag = <body bgColor = "#FFFFFF"> stylesheet = fileadmin/style.css meta.AUTHOR = Name meta.DESCRIPTION = Beschreibung - ERROR: Line 6: The script is short of 1 end brace(s) |
Gehe ich nun auf Anzeigen wird dies auch alle übernommen (bgColor usw.) allerdings wird mein template nicht angezeit. TypoScript ist dann komplett:
Typoscript-Code:
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12:
| seite = PAGE seite { typeNum = 0 bodyTag = <body bgColor = "#FFFFFF"> stylesheet = fileadmin/style.css meta.AUTHOR = Name meta.DESCRIPTION = Beschreibung 10 = TEMPLATE 10.template = FILE 10.template.file = fileadmin/vorlage.html } |
Quellcode meines Templates:
HTML-Code:
<html> <head> <title>Typo3</title> <link rel="stylesheet" href="fileadmin/style.css" type="text/css"> </head> <body bgColor="#FFFFFF"> <!-- ###DOKUMENT### begin --> <table width="761" height="317" cellpadding="0"> <tr> <td width="755" height="96" background="fileadmin/images/main_header_01.jpg"> </td> </tr> <tr> <td height="19" bgcolor="#66CCFF"> </td> </tr> <tr> <td height="178"><table width="755" height="237"> <tr> <td width="204">###MENU_LINKS###</td> <td width="346">###MITTE_CONTENT###</td> <td width="189">###RECHTS_CONTENT###</td> </tr> </table></td> </tr> </table> <!-- ###DOKUMENT### end --> </body> </html>
Wenn ich das Template direkt aufrufe
http://typo3.domain.de/fileadmin/_temp_/vorlage.html geht dies auch. Stimmt etwas nicht mit den verweisen oder müssen die Ordner irgendwelche Rechte haben ?