10. 12. 2020, 11:24

Ich verwende in einem TYPO3-Projekt die Erweiterung "rte_ckeditor_image", um FAL Bilder direkt im CKEditor einbinden zu können. Klappt nach einiger Konfiguration im RTE auch ganz gut, allerdings nur solange ich direkt live Änderungen mache. Sobald ich mich in einem Workspace befinde und ein Element mit Bildern speichere, sind diese danach aus dem Code verschwunden. Ich habe Berechtigungsprobleme schon ausschließen können und bin mit meinem Latein am Ende. Wird in Workspaces eine andere Verarbeitungsroutine für RTE verwendet als live?

Meine RTE Proc Konfig sieht aktuell so aus:

[code]proc {
allowedClasses := addToList(pdf, doc, colorblue, bluearrowleft, mail)
# erlaubte attribute in p, div tags
keepPDIVattribs = id,class
dontConvBRtoParagraph = 1
denyTags = *
allowTags = span, a, div, p, br, ul, ol, li, h1, h2, h3, h4, b, strong, i, em, img, table, tr, td, th, caption, thead, tbody, tfoot
HTMLparser_db {
allowTags < RTE.default.proc.allowTags
tags {
img {
allowedAttribs = src, alt, class, style
}
b.remap = strong
i.remap = em
table {
fixAttrib {
cellpadding.unset = 1
cellspacing.unset = 1
width.unset = 1
height.unset = 1
valign.unset = 1
border.unset = 1
}
}
}
}
HTMLparser_rte < RTE.default.proc.HTMLparser_db

#HTMLparser_db >
#HTMLparser_rte >
entryHTMLparser_db = 0
exitHTMLparser_db = 0
entryHTMLparser_rte = 0
exitHTMLparser_rte = 0

overruleMode = none
}[/code]

Ich bin mir nicht sicher welche Infos von meiner Seite zum Finden des Problems noch notwendig sind, falls etwas fehlt bitte Bescheid geben. Hoffe mir kann jemand weiterhelfen.