Hello Michael,
the 3rd error is:
ERROR 05.07.2011 10:49:35.949 {seID=89011} (de.espirit.firstspirit.generate.SiteProduction): format
template for tag 'paragraphwithoutptag' not found
Somebody deleted the format template "paragraphwithoutptag", but it is still used within a DOM[TABLE] editor on the page referred by the pagereference 'speedohome' (id=130567).
This one can be a little tricky to solve. If you are lucky, you can just delete the appropriate part of the text.
But I fear, that this part of the text will be invisible. Do find it, you have to start the FirstSpirit client with the visible java console [define, that it should be visible within the properties of java webstart], then put the cursor in the text of the CMS_INPUT_DOM[TABLE] and press CTRL-SHIFT-F2. This will copy the XML content of the component on the java console. There you can find the <paragraphwithoutptag> tag. Just delete the last visible character before and after this tag, and the problem will no longer occur.
Furthermore you have two kinds of warnings:
WARN 05.07.2011 10:49:35.193 {seID=89011} (de.espirit.firstspirit.generate.SiteProduction):
Replacing null value with empty default!
--> a variable is empty [null], but it is used within a $CMS_...(...)$ tag.
To solve this problem, you have to check, if the variable isn't empty before using it.
Instead of:
$CMS_VALUE(TagTitle)$
you should use either
$CMS_VALUE(TagTitle, default="")$
or
$CMS_IF(!TagTitle.isEmpty)$$CMS_VALUE(TagTitle)$$CMS_END_IF$
WARN 05.07.2011 10:49:36.549 {seID=89011} (de.espirit.firstspirit.generate.SiteProduction):
Undefined method 'de.espirit.firstspirit.parser.eval.NullEnhancer$Null#getId()'!
This is the same as the other warning, but this time a method (getId()) is used on the undefined variable. You have to check the variable, if it is empty, too.
Best regards,
Holger