<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Contao-Community</title>
		<link>https://community.contao.org/de/</link>
		<description>Das offizielle Forum der deutschsprachigen Contao-Community.</description>
		<language>de</language>
		<lastBuildDate>Sun, 14 Jun 2026 16:38:36 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>1</ttl>
		<image>
			<url>https://community.contao.org/de/images/misc/rss.png</url>
			<title>Contao-Community</title>
			<link>https://community.contao.org/de/</link>
		</image>
		<item>
			<title>5.7.x Im Backend POST-Request verarbeiten</title>
			<link>https://community.contao.org/de/showthread.php?89336-Im-Backend-POST-Request-verarbeiten&amp;goto=newpost</link>
			<pubDate>Sat, 13 Jun 2026 10:34:55 GMT</pubDate>
			<description>Hallo! 
 
Ist sicherlich nur ein kleiner Fehler aber ich komme hier nicht weiter. Ich habe mir im Backend einen Controller mit eigener Route...</description>
			<content:encoded><![CDATA[<div>Hallo!<br />
<br />
Ist sicherlich nur ein kleiner Fehler aber ich komme hier nicht weiter. Ich habe mir im Backend einen Controller mit eigener Route angelegt, in dem ich ein Formular anzeige. In dem Formular wird eine externe API via REST abgefragt und die ausgewählten Ergebnisse werden dann im zweiten Schritt in eine Tabelle importiert. Mein Aufbau ist grob so:<br />
<br />
Das Template erbt von <span style="font-family: Courier New">be_main</span> und erweitert nur den <span style="font-family: Courier New">main_content</span>:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">{% extends &quot;@Contao/be_main&quot; %}<br />
<br />
{% block main_content %}<br />
&nbsp; &nbsp; &lt;form id=&quot;worms-search-form&quot; class=&quot;tl_form&quot; method=&quot;post&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;div class=&quot;formbody&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;hidden&quot; name=&quot;FORM_SUBMIT&quot; value=&quot;wormsSearch&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;hidden&quot; name=&quot;REQUEST_TOKEN&quot; value=&quot;{{ contao.request_token }}&quot;&gt;</code><hr />
</div>Im Controller verarbeite ich die Suchanfrage und setze dann ins Template die entsrechenden Daten:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">PHP-Code:</div>
	<hr /><code class="bbcode_code"><code><span style="color: #000000">
<span style="color: #0000BB"></span><span style="color: #007700">public&nbsp;function&nbsp;</span><span style="color: #0000BB">__invoke</span><span style="color: #007700">(</span><span style="color: #0000BB">Request&nbsp;$request</span><span style="color: #007700">):&nbsp;</span><span style="color: #0000BB">Response<br /></span><span style="color: #007700">{<br />&nbsp;&nbsp;if&nbsp;(</span><span style="color: #0000BB">Input</span><span style="color: #007700">::</span><span style="color: #0000BB">post</span><span style="color: #007700">(</span><span style="color: #DD0000">'FORM_SUBMIT'</span><span style="color: #007700">)&nbsp;==&nbsp;</span><span style="color: #DD0000">'wormsSearch'</span><span style="color: #007700">)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">…<br />&nbsp;&nbsp;</span><span style="color: #007700">}<br /><br />&nbsp;&nbsp;return&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">render</span><span style="color: #007700">(<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #DD0000">'@Contao/backend_worms_import.html.twig'</span><span style="color: #007700">,<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$parameters<br />&nbsp;&nbsp;</span><span style="color: #007700">);<br />}&nbsp;<br /></span><span style="color: #0000BB"></span>
</span>
</code></code><hr />
</div>Mein Problem ist, wenn ich das Formular als <b>GET</b> absende und die GET-Werte verarbeite, funktioniert alles. Das Formular wird wie gewünscht nach dem Absenden aktualisiert und das Ergebnis angezeigt.<br />
<br />
<a href="https://community.contao.org/de/attachment.php?attachmentid=28395&amp;d=1781346028"  title="Name:  Bildschirmfoto 2026-06-13 um 12.19.00.png
Hits: 4
Größe:  399,0 KB">Bildschirmfoto 2026-06-13 um 12.19.00.png</a><br />
<br />
Setze ich das Formluar und meine Verarbeitung aber auf <b>POST</b>, wird die Seite nach dem Absenden nicht aktualisiert. In den Browser-Devtools sehe ich zwar, dass der Request durchgeht und auch die Seitet mit Status 200 und allen Ergebnissen zurückgegeben wird, sie wird aber nicht angezeigt. Die Suchmaske bleibt einfach stehen. Mir wäre aber lieber, wenn ich es mit POST machen könnte.<br />
<br />
Ich vermute, dass ich statt <span style="font-family: Courier New">be_main</span> besser ein anderes Template dafür erweitere oder noch irgendetwas anderes angeben muss, damit die Seite aktualisiert wird. Kann mir hier jemand einen Tipp geben?<br />
<br />
Eine zweite Frage, wenn ich gerade dabei bin: In einigen anderen Bundles habe ich gesehen, dass die Twig-Templates in Bundles über eine eigene „Kennung“ angesprochen werden. Mein Bundle heißt babelfisch/fossils-bundle und der Namespace ist Babelfisch/FossilsBundle. Alle Versuche von mir, mein Template entsprechend zu laden, funktionierten leider nicht und ich bekomme den Fehler, dass das Template nicht gefunden wurde.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">@BabelfischFossilsBundle/backend_worms_import.html.twig<br />
@BabelfischFossils/backend_worms_import.html.twig<br />
@Babelfisch/backend_worms_import.html.twig</code><hr />
</div>Vermutlich muss hier auch noch etwas registriert werden aber ich finde nicht wo und was. Das Template liegt in:<br />
<br />
<span style="font-family: Courier New">/src/Resources/contao/templates/backend/backend_worms_import.html.twig</span></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Angehängte Grafiken</legend>
			<ul>
			<li>
	<img class="inlineimg" src="https://community.contao.org/de/images/attach/png.gif" alt="Dateityp: png" />
	<a href="https://community.contao.org/de/attachment.php?attachmentid=28395&amp;d=1781346028" target="_blank">Bildschirmfoto 2026-06-13 um 12.19.00.png</a> 
(399,0 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?6-Entwickler-Fragen">Entwickler-Fragen</category>
			<dc:creator>Babelfisch</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89336-Im-Backend-POST-Request-verarbeiten</guid>
		</item>
		<item>
			<title>auf 5.7.6 und 2FA geht nicht mehr</title>
			<link>https://community.contao.org/de/showthread.php?89335-auf-5-7-6-und-2FA-geht-nicht-mehr&amp;goto=newpost</link>
			<pubDate>Sat, 13 Jun 2026 09:00:45 GMT</pubDate>
			<description>Achtung ich habe bei 2 Installationen von 5.7.4 auf 5.7.6 update gemacht und dann geht die 2FA Anmeldung nicht mehrim Backend. Der ContaoManager geht...</description>
			<content:encoded><![CDATA[<div>Achtung ich habe bei 2 Installationen von 5.7.4 auf 5.7.6 update gemacht und dann geht die 2FA Anmeldung nicht mehrim Backend. Der ContaoManager geht noch mit 2FA<br />
<br />
Habe alles Cache gelöscht auch den Ordner /var/cache hat aber nix gebracht.</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?48-Installation-Update">Installation / Update</category>
			<dc:creator>MacPix</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89335-auf-5-7-6-und-2FA-geht-nicht-mehr</guid>
		</item>
		<item>
			<title>5.7.x Odd Theme: Newsletter auf Startseite ersetzen durch Download Button</title>
			<link>https://community.contao.org/de/showthread.php?89334-Odd-Theme-Newsletter-auf-Startseite-ersetzen-durch-Download-Button&amp;goto=newpost</link>
			<pubDate>Fri, 12 Jun 2026 11:04:45 GMT</pubDate>
			<description>Hallo zuammen, 
bin neu im Bereich Contao und bei manchen Sachen doch noch etwas hilflos da.  
Zu meiner folgenden Aufgabenstellung hab ich keine...</description>
			<content:encoded><![CDATA[<div>Hallo zuammen,<br />
bin neu im Bereich Contao und bei manchen Sachen doch noch etwas hilflos da. <br />
Zu meiner folgenden Aufgabenstellung hab ich keine Lösung über die Suche hier und bei google gefunden.<br />
<br />
Also, ich möchte den Bereich &quot;Newsletter abonnieren&quot; mit dem Emailadressfeld und dem Button ersetzen durch nur einem Text &quot;Mitglied werden&quot;  mit einem Button der ein abgelegtes PDF in einem neuen Fenster öffnet.<br />
<br />
Wie ich den ganzen Bereich ausblende, auch den Text ändere habe ich rausgefunden. Aber nicht wie ich da was neues einsetze und wo ich einen entsprechenden Button dazu finde und konfiguriere.<br />
<br />
<a href="https://community.contao.org/de/attachment.php?attachmentid=28394&amp;d=1781262193"  title="Name:  Newsletterbereich_Startseite.png
Hits: 12
Größe:  26,9 KB">Newsletterbereich_Startseite.png</a><br />
<br />
Wäre total klasse, wenn mir jemand kurz die Schritte und Stellen aufführen kann, wo ich schauen muss um das umzusetzen, oder einen Link hat der das Beschreibt und meine Suche nicht gefunden hat.<br />
<br />
Vielen Dank<br />
Gruß Andre</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Angehängte Grafiken</legend>
			<ul>
			<li>
	<img class="inlineimg" src="https://community.contao.org/de/images/attach/png.gif" alt="Dateityp: png" />
	<a href="https://community.contao.org/de/attachment.php?attachmentid=28394&amp;d=1781262193" target="_blank">Newsletterbereich_Startseite.png</a> 
(26,9 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?53-Layout-Templates-Holy-Grail">Layout / Templates / Holy Grail</category>
			<dc:creator>AndreT78</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89334-Odd-Theme-Newsletter-auf-Startseite-ersetzen-durch-Download-Button</guid>
		</item>
		<item>
			<title>5.3.x Installation auf DF schlägt fehl</title>
			<link>https://community.contao.org/de/showthread.php?89333-Installation-auf-DF-schlägt-fehl&amp;goto=newpost</link>
			<pubDate>Wed, 10 Jun 2026 06:48:51 GMT</pubDate>
			<description>Hallo liebe Community, 
 
für ein Update bei einem Kundenhosting (Domainfactory) versuche ich eigentlich nur ganz simpel mit dem Manager Contao 5.3...</description>
			<content:encoded><![CDATA[<div>Hallo liebe Community,<br />
<br />
für ein Update bei einem Kundenhosting (Domainfactory) versuche ich eigentlich nur ganz simpel mit dem Manager Contao 5.3 (PHP 8.4) zu installieren. Die Installation bricht aber relativ schnell ab mit folgender Konsole:<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code">&gt; Resolving dependencies using Composer Cloud v3.10.0<br />
<br />
&#91;3.5MiB/0.22s&#93; Loading composer repositories with package information<br />
&#91;79.2MiB/15.69s&#93; Updating dependencies<br />
&#91;154.0MiB/16.69s&#93; Your requirements could not be resolved to an installable set of packages.<br />
&#91;154.0MiB/16.69s&#93; <br />
&nbsp; Problem 1<br />
&nbsp; &nbsp; - Root composer.json requires contao/newsletter-bundle 5.3.* -&gt; satisfiable by contao/newsletter-bundle&#91;5.3.0, ..., 5.3.46&#93;.<br />
&nbsp; &nbsp; - contao/core-bundle&#91;5.3.0, ..., 5.3.18&#93; require scheb/2fa-trusted-device ^6.0 -&gt; satisfiable by scheb/2fa-trusted-device&#91;v6.0.0, ..., v6.13.1&#93;.<br />
&nbsp; &nbsp; - contao/core-bundle&#91;5.3.19, ..., 5.3.46&#93; require scheb/2fa-trusted-device ^6.0 || ^7.0 -&gt; satisfiable by scheb/2fa-trusted-device&#91;v6.0.0, ..., v6.13.1, v7.0.0, ..., v7.13.1&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.0 requires contao/core-bundle 5.3.0 -&gt; satisfiable by contao/core-bundle&#91;5.3.0&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.1 requires contao/core-bundle 5.3.1 -&gt; satisfiable by contao/core-bundle&#91;5.3.1&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.10 requires contao/core-bundle 5.3.10 -&gt; satisfiable by contao/core-bundle&#91;5.3.10&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.11 requires contao/core-bundle 5.3.11 -&gt; satisfiable by contao/core-bundle&#91;5.3.11&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.12 requires contao/core-bundle 5.3.12 -&gt; satisfiable by contao/core-bundle&#91;5.3.12&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.13 requires contao/core-bundle 5.3.13 -&gt; satisfiable by contao/core-bundle&#91;5.3.13&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.14 requires contao/core-bundle 5.3.14 -&gt; satisfiable by contao/core-bundle&#91;5.3.14&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.15 requires contao/core-bundle 5.3.15 -&gt; satisfiable by contao/core-bundle&#91;5.3.15&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.16 requires contao/core-bundle 5.3.16 -&gt; satisfiable by contao/core-bundle&#91;5.3.16&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.17 requires contao/core-bundle 5.3.17 -&gt; satisfiable by contao/core-bundle&#91;5.3.17&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.18 requires contao/core-bundle 5.3.18 -&gt; satisfiable by contao/core-bundle&#91;5.3.18&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.19 requires contao/core-bundle 5.3.19 -&gt; satisfiable by contao/core-bundle&#91;5.3.19&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.2 requires contao/core-bundle 5.3.2 -&gt; satisfiable by contao/core-bundle&#91;5.3.2&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.20 requires contao/core-bundle 5.3.20 -&gt; satisfiable by contao/core-bundle&#91;5.3.20&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.21 requires contao/core-bundle 5.3.21 -&gt; satisfiable by contao/core-bundle&#91;5.3.21&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.22 requires contao/core-bundle 5.3.22 -&gt; satisfiable by contao/core-bundle&#91;5.3.22&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.23 requires contao/core-bundle 5.3.23 -&gt; satisfiable by contao/core-bundle&#91;5.3.23&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.24 requires contao/core-bundle 5.3.24 -&gt; satisfiable by contao/core-bundle&#91;5.3.24&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.25 requires contao/core-bundle 5.3.25 -&gt; satisfiable by contao/core-bundle&#91;5.3.25&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.26 requires contao/core-bundle 5.3.26 -&gt; satisfiable by contao/core-bundle&#91;5.3.26&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.27 requires contao/core-bundle 5.3.27 -&gt; satisfiable by contao/core-bundle&#91;5.3.27&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.28 requires contao/core-bundle 5.3.28 -&gt; satisfiable by contao/core-bundle&#91;5.3.28&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.29 requires contao/core-bundle 5.3.29 -&gt; satisfiable by contao/core-bundle&#91;5.3.29&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.3 requires contao/core-bundle 5.3.3 -&gt; satisfiable by contao/core-bundle&#91;5.3.3&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.30 requires contao/core-bundle 5.3.30 -&gt; satisfiable by contao/core-bundle&#91;5.3.30&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.31 requires contao/core-bundle 5.3.31 -&gt; satisfiable by contao/core-bundle&#91;5.3.31&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.32 requires contao/core-bundle 5.3.32 -&gt; satisfiable by contao/core-bundle&#91;5.3.32&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.33 requires contao/core-bundle 5.3.33 -&gt; satisfiable by contao/core-bundle&#91;5.3.33&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.34 requires contao/core-bundle 5.3.34 -&gt; satisfiable by contao/core-bundle&#91;5.3.34&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.35 requires contao/core-bundle 5.3.35 -&gt; satisfiable by contao/core-bundle&#91;5.3.35&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.36 requires contao/core-bundle 5.3.36 -&gt; satisfiable by contao/core-bundle&#91;5.3.36&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.37 requires contao/core-bundle 5.3.37 -&gt; satisfiable by contao/core-bundle&#91;5.3.37&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.38 requires contao/core-bundle 5.3.38 -&gt; satisfiable by contao/core-bundle&#91;5.3.38&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.39 requires contao/core-bundle 5.3.39 -&gt; satisfiable by contao/core-bundle&#91;5.3.39&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.4 requires contao/core-bundle 5.3.4 -&gt; satisfiable by contao/core-bundle&#91;5.3.4&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.40 requires contao/core-bundle 5.3.40 -&gt; satisfiable by contao/core-bundle&#91;5.3.40&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.41 requires contao/core-bundle 5.3.41 -&gt; satisfiable by contao/core-bundle&#91;5.3.41&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.42 requires contao/core-bundle 5.3.42 -&gt; satisfiable by contao/core-bundle&#91;5.3.42&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.43 requires contao/core-bundle 5.3.43 -&gt; satisfiable by contao/core-bundle&#91;5.3.43&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.44 requires contao/core-bundle 5.3.44 -&gt; satisfiable by contao/core-bundle&#91;5.3.44&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.45 requires contao/core-bundle 5.3.45 -&gt; satisfiable by contao/core-bundle&#91;5.3.45&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.46 requires contao/core-bundle 5.3.46 -&gt; satisfiable by contao/core-bundle&#91;5.3.46&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.5 requires contao/core-bundle 5.3.5 -&gt; satisfiable by contao/core-bundle&#91;5.3.5&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.6 requires contao/core-bundle 5.3.6 -&gt; satisfiable by contao/core-bundle&#91;5.3.6&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.7 requires contao/core-bundle 5.3.7 -&gt; satisfiable by contao/core-bundle&#91;5.3.7&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.8 requires contao/core-bundle 5.3.8 -&gt; satisfiable by contao/core-bundle&#91;5.3.8&#93;.<br />
&nbsp; &nbsp; - contao/newsletter-bundle 5.3.9 requires contao/core-bundle 5.3.9 -&gt; satisfiable by contao/core-bundle&#91;5.3.9&#93;.<br />
&nbsp; &nbsp; - lcobucci/jwt&#91;4.1.0, ..., 4.3.0, 5.4.0, ..., 5.6.0&#93; require ext-sodium * -&gt; the ext-sodium package is disabled by your platform config. Enable it again with &quot;composer config platform.ext-sodium --unset&quot;.<br />
<br />
&nbsp; &nbsp; &nbsp; Alternatively you can require one of these packages that provide the extension (or parts of it):<br />
&nbsp; &nbsp; &nbsp; Keep in mind that the suggestions are automated and may not be valid or safe to use<br />
&nbsp; &nbsp; &nbsp; - paragonie/sodium_compat_ext_sodium<br />
&nbsp; &nbsp; &nbsp; - juspay/expresscheckout-php-sdk Express Checkout SDK for PHP allows easy integration with Juspay's EC payments as a service platform<br />
&nbsp; &nbsp; &nbsp; - vufind/vufind A flexible discovery layer.<br />
<br />
&nbsp; &nbsp; - lcobucci/jwt 5.0.0 requires php ~8.1.0 || ~8.2.0 -&gt; your php version (8.4.21.0) does not satisfy that requirement.<br />
&nbsp; &nbsp; - lcobucci/jwt&#91;5.1.0, ..., 5.3.0&#93; require php ~8.1.0 || ~8.2.0 || ~8.3.0 -&gt; your php version (8.4.21.0) does not satisfy that requirement.<br />
&nbsp; &nbsp; - scheb/2fa-trusted-device&#91;v6.0.0, ..., v6.3.0&#93; require php ~8.0.0 || ~8.1.0 -&gt; your php version (8.4.21.0) does not satisfy that requirement.<br />
&nbsp; &nbsp; - scheb/2fa-trusted-device&#91;v6.10.0, ..., v6.12.0&#93; require php ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 -&gt; your php version (8.4.21.0) does not satisfy that requirement.<br />
&nbsp; &nbsp; - scheb/2fa-trusted-device&#91;v6.13.0, v7.6.0, ..., v7.13.1&#93; require lcobucci/jwt ^5.0 -&gt; satisfiable by lcobucci/jwt&#91;5.0.0, ..., 5.6.0&#93;.<br />
&nbsp; &nbsp; - scheb/2fa-trusted-device v6.13.1 requires lcobucci/jwt ^4.1 || ^5.0 -&gt; satisfiable by lcobucci/jwt&#91;4.1.0, ..., 4.3.0, 5.0.0, ..., 5.6.0&#93;.<br />
&nbsp; &nbsp; - scheb/2fa-trusted-device&#91;v6.4.0, ..., v6.9.0&#93; require php ~8.0.0 || ~8.1.0 || ~8.2.0 -&gt; your php version (8.4.21.0) does not satisfy that requirement.<br />
&nbsp; &nbsp; - scheb/2fa-trusted-device&#91;v7.0.0, ..., v7.5.0&#93; require php ~8.2.0 || ~8.3.0 -&gt; your php version (8.4.21.0) does not satisfy that requirement.<br />
<br />
To enable extensions, verify that they are enabled in your .ini files:<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/php.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/10-mysqlnd.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/10-opcache.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/10-pdo.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/15-xml.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-bcmath.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-bz2.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-calendar.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-ctype.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-curl.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-dba.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-dom.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-exif.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-ffi.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-fileinfo.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-ftp.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-gd.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-gettext.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-gmp.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-iconv.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-igbinary.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-imagick.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-intl.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-ldap.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-mbstring.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-mysqli.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-pdo_mysql.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-pdo_sqlite.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-phar.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-posix.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-readline.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-shmop.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-simplexml.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-soap.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-sockets.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-sqlite3.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-sysvmsg.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-sysvsem.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-sysvshm.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-tokenizer.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-xmlreader.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-xmlwriter.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-xsl.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/20-zip.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/25-redis.ini<br />
&nbsp; &nbsp; - /etc/php/8.4/cli/conf.d/50-serverctl.ini<br />
You can also run `php --ini` in a terminal to see which files are used by PHP in CLI mode.<br />
Alternatively, you can run Composer with `--ignore-platform-req=ext-sodium` to temporarily ignore these required extensions.<br />
&#91;154.1MiB/16.69s&#93; Running update with --no-dev does not mean require-dev is ignored, it just means the packages will not be installed. If dev requirements are blocking the update you have to resolve those problems.<br />
&#91;53.5MiB/16.77s&#93; Memory usage: 53.54MB (peak: 157.43MB), time: 16.79s.<br />
&#91;53.5MiB/16.77s&#93; Finished Composer Cloud resolving.<br />
<br />
<br />
# Cloud Job ID R7KmJMTJuiefDfzUTS92zKn8Fm7dgitrwKzAw7EGDsMe8qdoSsUj5nhwVMWrV1pB01RUAGm4 failed</code><hr />
</div>Was könnte da haken, was ich dem Support sagen muss? Die sodium Extension?</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?48-Installation-Update">Installation / Update</category>
			<dc:creator>tblumrich</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89333-Installation-auf-DF-schlägt-fehl</guid>
		</item>
		<item>
			<title>contao-changelanguage Version für 4.13</title>
			<link>https://community.contao.org/de/showthread.php?89332-contao-changelanguage-Version-für-4-13&amp;goto=newpost</link>
			<pubDate>Tue, 09 Jun 2026 14:19:22 GMT</pubDate>
			<description>Hallo zusammen, 
 
ich habe leider nicht gefunden was ich suche. 
Ich habe contao 4.13.58 installiert. Nun suche ich für den Sprachenwechsler die...</description>
			<content:encoded><![CDATA[<div>Hallo zusammen,<br />
<br />
ich habe leider nicht gefunden was ich suche.<br />
Ich habe contao 4.13.58 installiert. Nun suche ich für den Sprachenwechsler die neueste Version.<br />
Momentan ist die 3.7.12 installiert, es gibt aber schon die 3.8.4!<br />
Ist die 3.8.4 nur für Contao 5 ?<br />
Es lässt sich keine neuere Version als die 3.7.12 installieren...<br />
<br />
danke im voraus</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?22-changelanguage">changelanguage</category>
			<dc:creator>contaowilli</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89332-contao-changelanguage-Version-für-4-13</guid>
		</item>
		<item>
			<title><![CDATA[5.7.x Sitemap.xml + Google Search Console -> "konnte nicht abgerufen werden"]]></title>
			<link>https://community.contao.org/de/showthread.php?89331-Sitemap-xml-Google-Search-Console-gt-quot-konnte-nicht-abgerufen-werden-quot&amp;goto=newpost</link>
			<pubDate>Tue, 09 Jun 2026 12:14:01 GMT</pubDate>
			<description><![CDATA[Ich versuche eine Sitemap einer 5.7er-Installation in der Google Search Console einzureichen und bekomme immer die Meldung ""konnte nicht abgerufen...]]></description>
			<content:encoded><![CDATA[<div>Ich versuche eine Sitemap einer 5.7er-Installation in der Google Search Console einzureichen und bekomme immer die Meldung &quot;&quot;konnte nicht abgerufen werden&quot;.<br />
Ich habe geprüft, was der Server zurück liefert, was er zurück liefert, wenn man als Googlebot anfragt usw. Da sieht alles korrekt aus.<br />
Auch die Property ist bei Google korrekt hinterlegt, ich habe keine unnötigen Redirects.<br />
<br />
Am Ende habe ich die dynamisch ausgegebene Sitemap statisch hinterlegt (files/verzeichnis/sitemap.xml) und die bei Google eingereicht -&gt; dasselbe Problem.<br />
<br />
In meiner Verzweiflung habe ich ChatGPT gefragt und ihm die Sitemap zu fressen gegeben.<br />
<br />
&quot;Google ist bei Sitemaps überraschend strikt beim Namespace. Auch wenn Browser und Validatoren das oft tolerieren:<br />
<a href="https://www.sitemaps.org/schemas/sitemap/0.9" target="_blank" rel="nofollow">https://www.sitemaps.org/schemas/sitemap/0.9</a> ? (falsch für Google Parsing)<br />
<a href="http://www.sitemaps.org/schemas/sitemap/0.9" target="_blank" rel="nofollow">http://www.sitemaps.org/schemas/sitemap/0.9</a> ? (korrekt Standard)<br />
-&gt; Sitemap wird nicht geparst!<br />
<br />
Öh. :eek:<br />
Bei anderen Websites (ich habe allerdings nur 5.3er zum Vergleich) steht da auch https, und da funktioniert das Sitemap-Einreichen.<br />
<br />
Trotzdem habe ich mal in meiner statischen Sitemap in der 5.7er auf http umgestellt, und siehe da: &quot;Sitemap erfolgreich eingereicht&quot;.<br />
<br />
Was haltet Ihr davon? Ist das Mumpitz oder könnte das Sinn ergeben?<br />
Wenn dort http stehen sollte, wie ändere ich das?<br />
<br />
Nachtrag:<br />
Ich habe nochmal hier geschaut:<br />
<a href="https://www.sitemaps.org/de/protocol.html" target="_blank" rel="nofollow">https://www.sitemaps.org/de/protocol.html</a><br />
<br />
Dort wird die XML-Namespace-URI auch nur mit http geschrieben.</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?48-Installation-Update">Installation / Update</category>
			<dc:creator>pipkin</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89331-Sitemap-xml-Google-Search-Console-gt-quot-konnte-nicht-abgerufen-werden-quot</guid>
		</item>
		<item>
			<title>Interner Umzug von Vertrag zu Vertrag bei all-inkl.com</title>
			<link>https://community.contao.org/de/showthread.php?89330-Interner-Umzug-von-Vertrag-zu-Vertrag-bei-all-inkl-com&amp;goto=newpost</link>
			<pubDate>Tue, 09 Jun 2026 09:27:22 GMT</pubDate>
			<description>Hallo an alle, 
 
ich soll demnächst eine Contao-Homepage bei all-inkl.com, die noch innerhalb meines Vertrages läuft, auf einen anderen Vertrag...</description>
			<content:encoded><![CDATA[<div>Hallo an alle,<br />
<br />
ich soll demnächst eine Contao-Homepage bei all-inkl.com, die noch innerhalb meines Vertrages läuft, auf einen anderen Vertrag umziehen, also verschieben. Dafür gibt es auch umfängliche Anleitungen bei all-inkl.com, allerdings nur für die „statischen” Dinge wie Dateien, Ordner und Datenbanken etc.<br />
Wie läuft das aber ab, wenn man somit eine Contao-Installation verschiebt und sich die Vertragsnummer von z.B. <b>„w008xxxx”</b> auf <b>„w021xxxx”</b> ändert, die ja Bestandteil eines Pfades z. B. für die Datenbank ist? Muss ich dann intern bei Contao etwas ändern, also etwa das Setup nochmal neu laufen lassen und eine neue Verbindung zur „alten”, nur woanders liegenden Datenbank angeben? Oder reicht irgendwo die textliche Änderung in einer Parameter-Datei?</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?164-All-Inkl">All-Inkl</category>
			<dc:creator>Jens Pielawa</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89330-Interner-Umzug-von-Vertrag-zu-Vertrag-bei-all-inkl-com</guid>
		</item>
		<item>
			<title>Update von Contao 5.3.46 auf 5.7 schlägt fehl</title>
			<link>https://community.contao.org/de/showthread.php?89329-Update-von-Contao-5-3-46-auf-5-7-schlägt-fehl&amp;goto=newpost</link>
			<pubDate>Tue, 09 Jun 2026 09:12:41 GMT</pubDate>
			<description>Hallo, 
ich wollte eben eine Contao 5.3.46 Seite mittels Contao-Manager auf die aktuelle Contao 5.7 Version anheben. 
Leider schlug diese im Zuge des...</description>
			<content:encoded><![CDATA[<div>Hallo,<br />
ich wollte eben eine Contao 5.3.46 Seite mittels Contao-Manager auf die aktuelle Contao 5.7 Version anheben.<br />
Leider schlug diese im Zuge des Install-Prozesses fehl.<br />
Als ersten Schritt zur Fehlerbehebung habe ich ein Datenbank-Backup, dass ich vor dem Upgrade gezogen habe, eingespielt und den Cache gelöscht.<br />
Hier kommt folgende Consolen-Meldung (Contao manager):<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">$ /usr/local/php8.4/bin/php -q -dmax_execution_time=0 -dmemory_limit=-1 -ddisplay_errors=0 -ddisplay_startup_errors=0 -derror_reporting=0 -dallow_url_fopen=1 -ddisable_functions= -ddate.timezone=Europe/Berlin /home/artjrqco/c53.artett.at/vendor/contao/manager-bundle/bin/contao-console cache:clear --env=prod --no-warmup<br />
<br />
<br />
&nbsp;// Clearing the cache for the prod environment with debug false&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
<br />
&nbsp;[OK] Cache for the &quot;prod&quot; environment (debug=false) was successfully cleared.&nbsp; <br />
<br />
<br />
# Process terminated with exit code 0<br />
# Result: OK<br />
<br />
<br />
$ /usr/local/php8.4/bin/php -q -dmax_execution_time=0 -dmemory_limit=-1 -ddisplay_errors=0 -ddisplay_startup_errors=0 -derror_reporting=0 -dallow_url_fopen=1 -ddisable_functions= -ddate.timezone=Europe/Berlin /home/artjrqco/c53.artett.at/vendor/contao/manager-bundle/bin/contao-console cache:warmup --env=prod<br />
<br />
<br />
&nbsp;// Warming up the cache for the prod environment with debug false&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
<br />
10:56:12 CRITICAL&nbsp; [console] Error thrown while running command &quot;cache:warmup --env=prod&quot;. Message: &quot;Doctrine\DBAL\Schema\Column::setLength(): Argument #1 ($length) must be of type ?int, string given, called in /home/artjrqco/c53.artett.at/vendor/doctrine/dbal/src/Schema/Column.php on line 103&quot; [&quot;exception&quot; =&gt; TypeError { …},&quot;command&quot; =&gt; &quot;cache:warmup --env=prod&quot;,&quot;message&quot; =&gt; &quot;Doctrine\DBAL\Schema\Column::setLength(): Argument #1 ($length) must be of type ?int, string given, called in /home/artjrqco/c53.artett.at/vendor/doctrine/dbal/src/Schema/Column.php on line 103&quot;]<br />
<br />
In Column.php line 116:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; Doctrine\DBAL\Schema\Column::setLength(): Argument #1 ($length) must be of&nbsp;  <br />
&nbsp; type ?int, string given, called in /home/artjrqco/c53.artett.at/vendor/doct&nbsp; <br />
&nbsp; rine/dbal/src/Schema/Column.php on line 103&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
<br />
cache:warmup [--no-optional-warmers]<br />
<br />
<br />
# Process terminated with exit code 255<br />
# Result: Unknown error</code><hr />
</div>In der Log-Datei steht als letzter Eintrag:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">[2026-06-09T11:05:41.156489+02:00] request.INFO: Matched route &quot;tl_page.112.root&quot;. {&quot;route&quot;:&quot;tl_page.112.root&quot;,&quot;route_parameters&quot;:{&quot;_controller&quot;:&quot;Contao\\CoreBundle\\Controller\\Page\\RegularPageController&quot;,&quot;_scope&quot;:&quot;frontend&quot;,&quot;_locale&quot;:&quot;de&quot;,&quot;_format&quot;:&quot;html&quot;,&quot;_canonical_route&quot;:&quot;tl_page.112&quot;,&quot;parameters&quot;:&quot;&quot;,&quot;pageModel&quot;:{&quot;Contao\\PageModel&quot;:[]},&quot;_route&quot;:&quot;tl_page.112.root&quot;,&quot;_route_object&quot;:{&quot;Symfony\\Component\\Routing\\Route&quot;:[]}},&quot;request_uri&quot;:&quot;https://update.artett.at/&quot;,&quot;method&quot;:&quot;GET&quot;} {&quot;request_uri&quot;:&quot;https://update.artett.at/&quot;,&quot;request_method&quot;:&quot;GET&quot;}<br />
[2026-06-09T11:05:41.238911+02:00] request.CRITICAL: Uncaught PHP Exception LogicException: &quot;Unknown layout type &quot;&quot;&quot; at AbstractPageController.php line 53 {&quot;exception&quot;:&quot;[object] (LogicException(code: 0): Unknown layout type \&quot;\&quot; at /home/artjrqco/c53.artett.at/vendor/contao/core-bundle/src/Controller/Page/AbstractPageController.php:53)&quot;} {&quot;request_uri&quot;:&quot;https://update.artett.at/&quot;,&quot;request_method&quot;:&quot;GET&quot;}<br />
[2026-06-09T11:05:41.367155+02:00] messenger.INFO: Stopping worker. {&quot;transport_names&quot;:[&quot;contao_prio_high&quot;]} {&quot;request_uri&quot;:&quot;https://update.artett.at/&quot;,&quot;request_method&quot;:&quot;GET&quot;}</code><hr />
</div>Im Backend steht die Fehlermeldung:<br />
An exception has been thrown during the rendering of a template (&quot;An exception occurred while executing a query: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'usrdb_artjrqco.tl_job' doesn't exist&quot;) in &quot;@Contao/backend/chrome/header_menu.html.twig&quot; at line 8.<br />
<br />
IM Contao-Manager steht trotz Einspielung der alten Datenbank weiterhin der Hinweis auf 4 ausstehende Datenbank-Migrationen.<br />
<br />
Die Composer.json hat aber diesen Inhalt:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">{<br />
&nbsp; &nbsp; &quot;type&quot;: &quot;project&quot;,<br />
&nbsp; &nbsp; &quot;require&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/calendar-bundle&quot;: &quot;5.3.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/comments-bundle&quot;: &quot;5.3.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/conflicts&quot;: &quot;*@dev&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/faq-bundle&quot;: &quot;5.3.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/listing-bundle&quot;: &quot;5.3.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/manager-bundle&quot;: &quot;5.3.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/news-bundle&quot;: &quot;5.3.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/newsletter-bundle&quot;: &quot;5.3.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;markocupic/contao-altcha-antispam&quot;: &quot;^0.7.0&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;premium-contao-themes/theme_updater&quot;: &quot;^5.0&quot;<br />
&nbsp; &nbsp; },<br />
&nbsp; &nbsp; &quot;extra&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;public-dir&quot;: &quot;public&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao-component-dir&quot;: &quot;assets&quot;<br />
&nbsp; &nbsp; },<br />
&nbsp; &nbsp; &quot;scripts&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;post-install-cmd&quot;: [<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;@php vendor/bin/contao-setup&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; ],<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;post-update-cmd&quot;: [<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;@php vendor/bin/contao-setup&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; ]<br />
&nbsp; &nbsp; },<br />
&nbsp; &nbsp; &quot;config&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;allow-plugins&quot;: true<br />
&nbsp; &nbsp; }<br />
}</code><hr />
</div>Also kein Hinweis auf Contao 5.7.<br />
Installiertes Theme ist PCT in der aktuellen Version (sowohl für 5.3.46 a.a. 5.7. freigegeben)<br />
Bitte um Hlfestellung, wie ich zumindest wieder auf den alten Zustand komme.</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?48-Installation-Update">Installation / Update</category>
			<dc:creator>snarosy</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89329-Update-von-Contao-5-3-46-auf-5-7-schlägt-fehl</guid>
		</item>
		<item>
			<title>5.7.x Im ListLabelCallback feststellen, ob man aus Picker aufgerufen wird</title>
			<link>https://community.contao.org/de/showthread.php?89328-Im-ListLabelCallback-feststellen-ob-man-aus-Picker-aufgerufen-wird&amp;goto=newpost</link>
			<pubDate>Tue, 09 Jun 2026 07:57:03 GMT</pubDate>
			<description>Hallo! 
 
Gibt es eine Möglichkeit festzustellen, ob ein ListLabelCallback aus einem Picker aufgerufen wird oder direkt aus der Treeview? 
...</description>
			<content:encoded><![CDATA[<div>Hallo!<br />
<br />
Gibt es eine Möglichkeit festzustellen, ob ein ListLabelCallback aus einem Picker aufgerufen wird oder direkt aus der Treeview?<br />
<br />
Hintergrund: Für meine Treeview-Ansicht bastele ich mir ein Label mit zusätzlichen Daten, die ich aber nur im Treeview sehen will und nicht in der Ansicht einer anderen Tabelle, die Daten über einen Picker dort rausholt.<br />
<br />
So sieht es bei der Auswahl im Picker aus:<br />
<br />
<a href="https://community.contao.org/de/attachment.php?attachmentid=28391&amp;d=1780991483"  title="Name:  Bildschirmfoto 2026-06-09 um 09.49.40.png
Hits: 3
Größe:  82,9 KB">Bildschirmfoto 2026-06-09 um 09.49.40.png</a><br />
<br />
Das ist auch so gewollt und ok. In der Tabelle wird es dann aber auch so mit Icon und rechtsbündigem Text angezeigt:<br />
<br />
<a href="https://community.contao.org/de/attachment.php?attachmentid=28392&amp;d=1780991534"  title="Name:  Bildschirmfoto 2026-06-09 um 09.49.54.png
Hits: 3
Größe:  46,3 KB">Bildschirmfoto 2026-06-09 um 09.49.54.png</a><br />
<br />
Dort hätte ich aber lieber nur den Text ohne Icon und rechtsbündigem Text.<br />
<br />
Mein Callback:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">PHP-Code:</div>
	<hr /><code class="bbcode_code"><code><span style="color: #000000">
<span style="color: #0000BB"></span><span style="color: #FF8000">#&#91;AsCallback(table:&nbsp;'tl_foss_taxonomy',&nbsp;target:&nbsp;'list.label.label')&#93;<br /></span><span style="color: #0000BB">readonly&nbsp;</span><span style="color: #007700">class&nbsp;</span><span style="color: #0000BB">FossTaxonomyLabelCallbackListener<br /></span><span style="color: #007700">{<br />&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;function&nbsp;</span><span style="color: #0000BB">__invoke</span><span style="color: #007700">(</span><span style="color: #0000BB">$row</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$label</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">DataContainer&nbsp;$dc</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">string&nbsp;$imageAttribute&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">''</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">bool&nbsp;$returnImage&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">false</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">bool</span><span style="color: #007700">|</span><span style="color: #0000BB">null&nbsp;$isProtected&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">null</span><span style="color: #007700">):&nbsp;</span><span style="color: #0000BB">string<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">{&nbsp;<br /></span><span style="color: #0000BB"></span>
</span>
</code></code><hr />
</div>Im $dc finde ich nichts was ich abfragen kann bzw. ist alles protected.<br />
<br />
Wenn nicht, muss ich es versuchen über CSS zu lösen aber lieber wäre es mir, wenn ich es über den Callback unterscheiden kann.<br />
<br />
Gruß</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Angehängte Grafiken</legend>
			<ul>
			<li>
	<img class="inlineimg" src="https://community.contao.org/de/images/attach/png.gif" alt="Dateityp: png" />
	<a href="https://community.contao.org/de/attachment.php?attachmentid=28391&amp;d=1780991483" target="_blank">Bildschirmfoto 2026-06-09 um 09.49.40.png</a> 
(82,9 KB)
</li><li>
	<img class="inlineimg" src="https://community.contao.org/de/images/attach/png.gif" alt="Dateityp: png" />
	<a href="https://community.contao.org/de/attachment.php?attachmentid=28392&amp;d=1780991534" target="_blank">Bildschirmfoto 2026-06-09 um 09.49.54.png</a> 
(46,3 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?6-Entwickler-Fragen">Entwickler-Fragen</category>
			<dc:creator>Babelfisch</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89328-Im-ListLabelCallback-feststellen-ob-man-aus-Picker-aufgerufen-wird</guid>
		</item>
		<item>
			<title>Bei Update Installation von 4.9 auf 5.3 Fehler in tl_page.php</title>
			<link>https://community.contao.org/de/showthread.php?89327-Bei-Update-Installation-von-4-9-auf-5-3-Fehler-in-tl_page-php&amp;goto=newpost</link>
			<pubDate>Mon, 08 Jun 2026 16:58:54 GMT</pubDate>
			<description>Hallo, 
 
folgender Fehler bei Installation des Updates von 4.9 auf 5.3 
Frontend und Backend sind momentan nicht erreichbar. 
 
Kann wer...</description>
			<content:encoded><![CDATA[<div>Hallo,<br />
<br />
folgender Fehler bei Installation des Updates von 4.9 auf 5.3<br />
Frontend und Backend sind momentan nicht erreichbar.<br />
<br />
Kann wer weiterhelfen?<br />
Soll ich mal die /vendor/contao/core-bundle/contao/dca/tl_page.php posten?<br />
<br />
danke!<br />
<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">$ /usr/bin/php8.5 -q -dmax_execution_time=0 -dmemory_limit=-1 -ddisplay_errors=0 -ddisplay_startup_errors=0 -derror_reporting=0 -dallow_url_fopen=1 -ddisable_functions= -ddate.timezone=Europe/Vienna /www/rehazentrum/html/public/contao-manager.phar.php composer install --no-dev --no-progress --no-ansi --no-interaction --optimize-autoloader<br />
Deprecation Notice: ContaoCommunityAlliance\Composer\Plugin\Plugin::__construct(): Implicitly marking parameter $runonceManager as nullable is deprecated, the explicit nullable type must be used instead in /www/rehazentrum/html/vendor/contao-community-alliance/composer-plugin/src/Plugin.php:65<br />
More deprecation notices were hidden, run again with `-v` to show them.<br />
Installing dependencies from lock file<br />
Verifying lock file contents can be installed on current platform.<br />
Nothing to install, update or remove<br />
Package doctrine/annotations is abandoned, you should avoid using it. No replacement was suggested.<br />
Package doctrine/cache is abandoned, you should avoid using it. No replacement was suggested.<br />
Package php-http/message-factory is abandoned, you should avoid using it. Use psr/http-factory instead.<br />
Generating optimized autoload files<br />
contao/manager-plugin: Dumping generated plugins file...<br />
contao/manager-plugin: ...done dumping generated plugins file<br />
118 packages you are using are looking for funding.<br />
Use the `composer fund` command to find out more!<br />
&gt; @php vendor/bin/contao-setup<br />
Added the bin/console file.<br />
Added the public/index.php file.<br />
Added the public/preview.php file.<br />
&nbsp;Trying to install assets as relative symbolic links.<br />
&nbsp;--- ------------------------------- ------------------ <br />
&nbsp; &nbsp; &nbsp; Bundle&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Method / Error&nbsp; &nbsp; <br />
&nbsp;--- ------------------------------- ------------------ <br />
&nbsp; ?&nbsp;  ContaoCoreBundle&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; relative symlink&nbsp; <br />
&nbsp; ?&nbsp;  RockSolidCustomElementsBundle&nbsp;  relative symlink&nbsp; <br />
&nbsp; ?&nbsp;  ContaoCookiebar&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  relative symlink&nbsp; <br />
&nbsp; ?&nbsp;  ContaoFaqBundle&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  relative symlink&nbsp; <br />
&nbsp; ?&nbsp;  RockSolidColumnsBundle&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; relative symlink&nbsp; <br />
&nbsp; ?&nbsp;  ContaoNewsBundle&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; relative symlink&nbsp; <br />
&nbsp; ?&nbsp;  ContaoCalendarBundle&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; relative symlink&nbsp; <br />
&nbsp; ?&nbsp;  ContaoNewsletterBundle&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; relative symlink&nbsp; <br />
&nbsp; ?&nbsp;  SoftleisterBackupDbBundle&nbsp; &nbsp; &nbsp;  relative symlink&nbsp; <br />
&nbsp; ?&nbsp;  ContaoCommentsBundle&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; relative symlink&nbsp; <br />
&nbsp; ?&nbsp;  RockSolidSliderBundle&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  relative symlink&nbsp; <br />
&nbsp;--- ------------------------------- ------------------ <br />
&nbsp;[OK] All assets were successfully installed.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp;--- ------------------------------------------- -------------------------------------------------- <br />
&nbsp; &nbsp; &nbsp; Symlink&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  Target / Error&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp;--- ------------------------------------------- -------------------------------------------------- <br />
&nbsp; ?&nbsp;  public/files/rzs/webfonts&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  files/rzs/webfonts&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; ?&nbsp;  public/files/rzs/downloads&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; files/rzs/downloads&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; ?&nbsp;  public/files/rzs/js&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  files/rzs/js&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; ?&nbsp;  public/files/rzs/img&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; files/rzs/img&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; ?&nbsp;  public/files/rzs/css&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; files/rzs/css&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; ?&nbsp;  public/files/rzs/videos&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  files/rzs/videos&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; ?&nbsp;  public/files/rzs/stellenangebote&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; files/rzs/stellenangebote&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; ?&nbsp;  public/files/rzs/leaflet&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; files/rzs/leaflet&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; ?&nbsp;  public/system/modules/mobile_menu/assets&nbsp; &nbsp; system/modules/mobile_menu/assets&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; ?&nbsp;  system/themes/flexible&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vendor/contao/core-bundle/contao/themes/flexible&nbsp; <br />
&nbsp; ?&nbsp;  public/assets&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  assets&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; ?&nbsp;  public/system/themes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; system/themes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; ?&nbsp;  system/logs&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  var/logs&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; ?&nbsp;  public/vendor/scrivo/highlight_php/styles&nbsp;  vendor/scrivo/highlight.php/styles&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp;--- ------------------------------------------- -------------------------------------------------- <br />
&nbsp;// Clearing the cache for the prod environment with debug false&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp;[OK] Cache for the &quot;prod&quot; environment (debug=false) was successfully cleared.&nbsp; <br />
&nbsp;// Clearing the cache for the dev environment with debug true&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp;[OK] Cache for the &quot;dev&quot; environment (debug=true) was successfully cleared.&nbsp; &nbsp; <br />
&nbsp;// Warming up the cache for the prod environment with debug false&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
15:51:38 CRITICAL&nbsp; [console] Error thrown while running command &quot;cache:warmup --env=prod --no-ansi&quot;. Message: &quot;Class &quot;Backend&quot; not found&quot; [&quot;exception&quot; =&gt; Error { …},&quot;command&quot; =&gt; &quot;cache:warmup --env=prod --no-ansi&quot;,&quot;message&quot; =&gt; &quot;Class &quot;Backend&quot; not found&quot;]<br />
In tl_page.php line 420:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; Attempted to load class &quot;Backend&quot; from the global namespace.&nbsp; <br />
&nbsp; Did you forget a &quot;use&quot; statement?&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
cache:warmup [--no-optional-warmers]<br />
15:51:38 CRITICAL&nbsp; [console] An error occurred while using the console. Message: &quot;An error occurred while executing the &quot;/usr/bin/php8.5 -dmemory_limit=-1 /www/rehazentrum/html/vendor/contao/manager-bundle/bin/contao-console cache:warmup --env=prod --no-ansi&quot; command: 15:51:38 CRITICAL&nbsp; [console] Error thrown while running command &quot;cache:warmup --env=prod --no-ansi&quot;. Message: &quot;Class &quot;Backend&quot; not found&quot; [&quot;exception&quot; =&gt; Error { …},&quot;command&quot; =&gt; &quot;cache:warmup --env=prod --no-ansi&quot;,&quot;message&quot; =&gt; &quot;Class &quot;Backend&quot; not found&quot;]<br />
In tl_page.php line 420:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; Attempted to load class &quot;Backend&quot; from the global namespace.&nbsp; <br />
&nbsp; Did you forget a &quot;use&quot; statement?&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
cache:warmup [--no-optional-warmers]<br />
&quot; [&quot;exception&quot; =&gt; RuntimeException { …},&quot;message&quot; =&gt; &quot;&quot;&quot;&nbsp; An error occurred while executing the &quot;/usr/bin/php8.5 -dmemory_limit=-1 /www/rehazentrum/html/vendor/contao/manager-bundle/bin/contao-console cache:warmup --env=prod --no-ansi&quot; command: 15:51:38 CRITICAL&nbsp; [console] Error thrown while running command &quot;cache:warmup --env=prod --no-ansi&quot;. Message: &quot;Class &quot;Backend&quot; not found&quot; [&quot;exception&quot; =&gt; Error { …},&quot;command&quot; =&gt; &quot;cache:warmup --env=prod --no-ansi&quot;,&quot;message&quot; =&gt; &quot;Class &quot;Backend&quot; not found&quot;]\n&nbsp; \n&nbsp; In tl_page.php line 420:\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \n&nbsp; &nbsp; Attempted to load class &quot;Backend&quot; from the global namespace.&nbsp; \n&nbsp; &nbsp; Did you forget a &quot;use&quot; statement?&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  \n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \n&nbsp; \n&nbsp; cache:warmup [--no-optional-warmers]\n&nbsp; \n&nbsp; &quot;&quot;&quot;]<br />
In ContaoSetupCommand.php line 142:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; An error occurred while executing the &quot;/usr/bin/php8.5 -dmemory_limit=-1 /w&nbsp; <br />
&nbsp; ww/rehazentrum/html/vendor/contao/manager-bundle/bin/contao-console cache:w&nbsp; <br />
&nbsp; armup --env=prod --no-ansi&quot; command: 15:51:38 CRITICAL&nbsp; [console] Error thr&nbsp; <br />
&nbsp; own while running command &quot;cache:warmup --env=prod --no-ansi&quot;. Message: &quot;Cl&nbsp; <br />
&nbsp; ass &quot;Backend&quot; not found&quot; [&quot;exception&quot; =&gt; Error { …},&quot;command&quot; =&gt; &quot;cache:war&nbsp; <br />
&nbsp; mup --env=prod --no-ansi&quot;,&quot;message&quot; =&gt; &quot;Class &quot;Backend&quot; not found&quot;]&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; In tl_page.php line 420:&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; Attempted to load class &quot;Backend&quot; from the global namespace.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; Did you forget a &quot;use&quot; statement?&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; cache:warmup [--no-optional-warmers]&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
contao:setup<br />
Script @php vendor/bin/contao-setup handling the post-install-cmd event returned with error code 1<br />
# Process terminated with exit code 1<br />
# Result: General error</code><hr />
</div></div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?48-Installation-Update">Installation / Update</category>
			<dc:creator>Claudi</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89327-Bei-Update-Installation-von-4-9-auf-5-3-Fehler-in-tl_page-php</guid>
		</item>
		<item>
			<title>contao-bootstrap/grid Fehler im Backend</title>
			<link>https://community.contao.org/de/showthread.php?89326-contao-bootstrap-grid-Fehler-im-Backend&amp;goto=newpost</link>
			<pubDate>Sat, 06 Jun 2026 07:34:14 GMT</pubDate>
			<description><![CDATA[Moin, 
 
ich habe gerade bei einer Neuinstallation einen Fehler bemerkt in Zusammenhang mit der Erweiterung 'contao-bootstrap/grid' 
Wenn ich im...]]></description>
			<content:encoded><![CDATA[<div>Moin,<br />
<br />
ich habe gerade bei einer Neuinstallation einen Fehler bemerkt in Zusammenhang mit der Erweiterung 'contao-bootstrap/grid'<br />
Wenn ich im Backend unter Themes das Layout bearbeiten will (Stift-Icon) erzeugt das einen Fehler.<br />
Der Fehler tritt bei allen meinen Installationen, wo ich diese Erweiterung nutze auf.<br />
Contao ist die neuste Version 5.3.46<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">PHP-Code:</div>
	<hr /><code class="bbcode_code"><code><span style="color: #000000">
<span style="color: #0000BB">TypeError</span><span style="color: #007700">:<br /></span><span style="color: #0000BB">explode</span><span style="color: #007700">():&nbsp;</span><span style="color: #0000BB">Argument&nbsp;</span><span style="color: #FF8000">#2&nbsp;($string)&nbsp;must&nbsp;be&nbsp;of&nbsp;type&nbsp;string,&nbsp;null&nbsp;given<br /><br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">-</span><span style="color: #0000BB">bootstrap</span><span style="color: #007700">/</span><span style="color: #0000BB">core</span><span style="color: #007700">/</span><span style="color: #0000BB">src</span><span style="color: #007700">/</span><span style="color: #0000BB">Listener</span><span style="color: #007700">/</span><span style="color: #0000BB">Dca</span><span style="color: #007700">/</span><span style="color: #0000BB">LayoutDcaListener</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">106<br />&nbsp;&nbsp;at&nbsp;explode</span><span style="color: #007700">(</span><span style="color: #DD0000">';'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">null</span><span style="color: #007700">)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">-</span><span style="color: #0000BB">bootstrap</span><span style="color: #007700">/</span><span style="color: #0000BB">core</span><span style="color: #007700">/</span><span style="color: #0000BB">src</span><span style="color: #007700">/</span><span style="color: #0000BB">Listener</span><span style="color: #007700">/</span><span style="color: #0000BB">Dca</span><span style="color: #007700">/</span><span style="color: #0000BB">LayoutDcaListener</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">106</span><span style="color: #007700">)<br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;ContaoBootstrap</span><span style="color: #007700">\</span><span style="color: #0000BB">Core</span><span style="color: #007700">\</span><span style="color: #0000BB">Listener</span><span style="color: #007700">\</span><span style="color: #0000BB">Dca</span><span style="color: #007700">\</span><span style="color: #0000BB">LayoutDcaListener</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">convertPaletteToMetaPalette</span><span style="color: #007700">(</span><span style="color: #DD0000">'modern'</span><span style="color: #007700">)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">-</span><span style="color: #0000BB">bootstrap</span><span style="color: #007700">/</span><span style="color: #0000BB">core</span><span style="color: #007700">/</span><span style="color: #0000BB">src</span><span style="color: #007700">/</span><span style="color: #0000BB">Listener</span><span style="color: #007700">/</span><span style="color: #0000BB">Dca</span><span style="color: #007700">/</span><span style="color: #0000BB">LayoutDcaListener</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">60</span><span style="color: #007700">)<br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;ContaoBootstrap</span><span style="color: #007700">\</span><span style="color: #0000BB">Core</span><span style="color: #007700">\</span><span style="color: #0000BB">Listener</span><span style="color: #007700">\</span><span style="color: #0000BB">Dca</span><span style="color: #007700">\</span><span style="color: #0000BB">LayoutDcaListener</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">generatePalette</span><span style="color: #007700">()<br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;call_user_func</span><span style="color: #007700">(array(</span><span style="color: #0000BB">object</span><span style="color: #007700">(</span><span style="color: #0000BB">LayoutDcaListener</span><span style="color: #007700">),&nbsp;</span><span style="color: #DD0000">'generatePalette'</span><span style="color: #007700">))<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">-</span><span style="color: #0000BB">community</span><span style="color: #007700">-</span><span style="color: #0000BB">alliance</span><span style="color: #007700">/</span><span style="color: #0000BB">meta</span><span style="color: #007700">-</span><span style="color: #0000BB">palettes</span><span style="color: #007700">/</span><span style="color: #0000BB">src</span><span style="color: #007700">/</span><span style="color: #0000BB">Listener</span><span style="color: #007700">/</span><span style="color: #0000BB">BuildPalettesListener</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">112</span><span style="color: #007700">)<br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;ContaoCommunityAlliance</span><span style="color: #007700">\</span><span style="color: #0000BB">MetaPalettes</span><span style="color: #007700">\</span><span style="color: #0000BB">Listener</span><span style="color: #007700">\</span><span style="color: #0000BB">BuildPalettesListener</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">invokePalettesCallbacks</span><span style="color: #007700">(</span><span style="color: #DD0000">'tl_layout'</span><span style="color: #007700">)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">-</span><span style="color: #0000BB">community</span><span style="color: #007700">-</span><span style="color: #0000BB">alliance</span><span style="color: #007700">/</span><span style="color: #0000BB">meta</span><span style="color: #007700">-</span><span style="color: #0000BB">palettes</span><span style="color: #007700">/</span><span style="color: #0000BB">src</span><span style="color: #007700">/</span><span style="color: #0000BB">Listener</span><span style="color: #007700">/</span><span style="color: #0000BB">BuildPalettesListener</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">83</span><span style="color: #007700">)<br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;ContaoCommunityAlliance</span><span style="color: #007700">\</span><span style="color: #0000BB">MetaPalettes</span><span style="color: #007700">\</span><span style="color: #0000BB">Listener</span><span style="color: #007700">\</span><span style="color: #0000BB">BuildPalettesListener</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">onLoadDataContainer</span><span style="color: #007700">(</span><span style="color: #DD0000">'tl_layout'</span><span style="color: #007700">)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">/</span><span style="color: #0000BB">core</span><span style="color: #007700">-</span><span style="color: #0000BB">bundle</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">/</span><span style="color: #0000BB">library</span><span style="color: #007700">/</span><span style="color: #0000BB">Contao</span><span style="color: #007700">/</span><span style="color: #0000BB">DcaLoader</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">134</span><span style="color: #007700">)<br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;Contao</span><span style="color: #007700">\</span><span style="color: #0000BB">DcaLoader</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">loadDcaFiles</span><span style="color: #007700">()<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">/</span><span style="color: #0000BB">core</span><span style="color: #007700">-</span><span style="color: #0000BB">bundle</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">/</span><span style="color: #0000BB">library</span><span style="color: #007700">/</span><span style="color: #0000BB">Contao</span><span style="color: #007700">/</span><span style="color: #0000BB">DcaLoader</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">82</span><span style="color: #007700">)<br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;Contao</span><span style="color: #007700">\</span><span style="color: #0000BB">DcaLoader</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">load</span><span style="color: #007700">()<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">/</span><span style="color: #0000BB">core</span><span style="color: #007700">-</span><span style="color: #0000BB">bundle</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">/</span><span style="color: #0000BB">library</span><span style="color: #007700">/</span><span style="color: #0000BB">Contao</span><span style="color: #007700">/</span><span style="color: #0000BB">Controller</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">1237</span><span style="color: #007700">)<br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;Contao</span><span style="color: #007700">\</span><span style="color: #0000BB">Controller</span><span style="color: #007700">::</span><span style="color: #0000BB">loadDataContainer</span><span style="color: #007700">(</span><span style="color: #DD0000">'tl_layout'</span><span style="color: #007700">)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">/</span><span style="color: #0000BB">core</span><span style="color: #007700">-</span><span style="color: #0000BB">bundle</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">/</span><span style="color: #0000BB">classes</span><span style="color: #007700">/</span><span style="color: #0000BB">Backend</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">280</span><span style="color: #007700">)<br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;Contao</span><span style="color: #007700">\</span><span style="color: #0000BB">Backend</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getBackendModule</span><span style="color: #007700">(</span><span style="color: #DD0000">'themes'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">null</span><span style="color: #007700">)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">/</span><span style="color: #0000BB">core</span><span style="color: #007700">-</span><span style="color: #0000BB">bundle</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">/</span><span style="color: #0000BB">controllers</span><span style="color: #007700">/</span><span style="color: #0000BB">BackendMain</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">144</span><span style="color: #007700">)<br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;Contao</span><span style="color: #007700">\</span><span style="color: #0000BB">BackendMain</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">run</span><span style="color: #007700">()<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">contao</span><span style="color: #007700">/</span><span style="color: #0000BB">core</span><span style="color: #007700">-</span><span style="color: #0000BB">bundle</span><span style="color: #007700">/</span><span style="color: #0000BB">src</span><span style="color: #007700">/</span><span style="color: #0000BB">Controller</span><span style="color: #007700">/</span><span style="color: #0000BB">BackendController</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">44</span><span style="color: #007700">)<br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;Contao</span><span style="color: #007700">\</span><span style="color: #0000BB">CoreBundle</span><span style="color: #007700">\</span><span style="color: #0000BB">Controller</span><span style="color: #007700">\</span><span style="color: #0000BB">BackendController</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">mainAction</span><span style="color: #007700">()<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">symfony</span><span style="color: #007700">/</span><span style="color: #0000BB">http</span><span style="color: #007700">-</span><span style="color: #0000BB">kernel</span><span style="color: #007700">/</span><span style="color: #0000BB">HttpKernel</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">181</span><span style="color: #007700">)<br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;Symfony</span><span style="color: #007700">\</span><span style="color: #0000BB">Component</span><span style="color: #007700">\</span><span style="color: #0000BB">HttpKernel</span><span style="color: #007700">\</span><span style="color: #0000BB">HttpKernel</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">handleRaw</span><span style="color: #007700">(</span><span style="color: #0000BB">object</span><span style="color: #007700">(</span><span style="color: #0000BB">Request</span><span style="color: #007700">),&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">symfony</span><span style="color: #007700">/</span><span style="color: #0000BB">http</span><span style="color: #007700">-</span><span style="color: #0000BB">kernel</span><span style="color: #007700">/</span><span style="color: #0000BB">HttpKernel</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">76</span><span style="color: #007700">)<br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;Symfony</span><span style="color: #007700">\</span><span style="color: #0000BB">Component</span><span style="color: #007700">\</span><span style="color: #0000BB">HttpKernel</span><span style="color: #007700">\</span><span style="color: #0000BB">HttpKernel</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">handle</span><span style="color: #007700">(</span><span style="color: #0000BB">object</span><span style="color: #007700">(</span><span style="color: #0000BB">Request</span><span style="color: #007700">),&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">true</span><span style="color: #007700">)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(</span><span style="color: #0000BB">vendor</span><span style="color: #007700">/</span><span style="color: #0000BB">symfony</span><span style="color: #007700">/</span><span style="color: #0000BB">http</span><span style="color: #007700">-</span><span style="color: #0000BB">kernel</span><span style="color: #007700">/</span><span style="color: #0000BB">Kernel</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">208</span><span style="color: #007700">)<br />&nbsp;&nbsp;</span><span style="color: #0000BB">at&nbsp;Symfony</span><span style="color: #007700">\</span><span style="color: #0000BB">Component</span><span style="color: #007700">\</span><span style="color: #0000BB">HttpKernel</span><span style="color: #007700">\</span><span style="color: #0000BB">Kernel</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">handle</span><span style="color: #007700">(</span><span style="color: #0000BB">object</span><span style="color: #007700">(</span><span style="color: #0000BB">Request</span><span style="color: #007700">))<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(public/</span><span style="color: #0000BB">index</span><span style="color: #007700">.</span><span style="color: #0000BB">php</span><span style="color: #007700">:</span><span style="color: #0000BB">42</span><span style="color: #007700">)&nbsp;<br /></span><span style="color: #0000BB"></span>
</span>
</code></code><hr />
</div>Hat jemand sonst noch das Problem?<br />
<br />
Gruß<br />
Karsten</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?119-Sonstige-Erweiterungen">Sonstige Erweiterungen</category>
			<dc:creator>Bitjongleur</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89326-contao-bootstrap-grid-Fehler-im-Backend</guid>
		</item>
		<item>
			<title>5.7.x CONTAO Wasserzeichen für Bilder</title>
			<link>https://community.contao.org/de/showthread.php?89325-CONTAO-Wasserzeichen-für-Bilder&amp;goto=newpost</link>
			<pubDate>Thu, 04 Jun 2026 11:27:52 GMT</pubDate>
			<description>Hallo, 
 
 
unter CONTAO 4.13 konnte ich ein Wasserzeichen beim Hochladen von Fotos einkopoieren lassen mit: 
omosde/contao-om-imagine 
 
 
Nun steht...</description>
			<content:encoded><![CDATA[<div>Hallo,<br />
<br />
<br />
unter CONTAO 4.13 konnte ich ein Wasserzeichen beim Hochladen von Fotos einkopoieren lassen mit:<br />
omosde/contao-om-imagine<br />
<br />
<br />
Nun steht ein Upgrade für 5.7 an, und diese Erweiterung gibt es nicht dafür, was nun ?<br />
<br />
<br />
<br />
Vielen Dank für Hinweise.</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?69-Bilder-Dateien">Bilder/Dateien</category>
			<dc:creator>mv-soft</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89325-CONTAO-Wasserzeichen-für-Bilder</guid>
		</item>
		<item>
			<title>5.7.x Akkordeon</title>
			<link>https://community.contao.org/de/showthread.php?89324-Akkordeon&amp;goto=newpost</link>
			<pubDate>Thu, 04 Jun 2026 08:31:06 GMT</pubDate>
			<description>Weiß jemand ob die js_accordion beim neuen Elmenttyp Akkordeon noch gebraucht wird?</description>
			<content:encoded><![CDATA[<div>Weiß jemand ob die js_accordion beim neuen Elmenttyp Akkordeon noch gebraucht wird?</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?86-Allgemeine-Inhaltselemente">Allgemeine Inhaltselemente</category>
			<dc:creator>Birden</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89324-Akkordeon</guid>
		</item>
		<item>
			<title>Neue Erweiterung zum automatischen Übersetzen z. B. mit DeepL</title>
			<link>https://community.contao.org/de/showthread.php?89323-Neue-Erweiterung-zum-automatischen-Übersetzen-z-B-mit-DeepL&amp;goto=newpost</link>
			<pubDate>Thu, 04 Jun 2026 06:40:04 GMT</pubDate>
			<description>*Translator-Bridge für MetaModels* 
 
Mit der Translator-Bridge werden Schaltflächen für maschinelle Übersetzung wie z. B. DeepL direkt in die...</description>
			<content:encoded><![CDATA[<div><b>Translator-Bridge für MetaModels</b><br />
<br />
Mit der Translator-Bridge werden Schaltflächen für maschinelle Übersetzung wie z. B. DeepL direkt in die Bearbeitungsmaske des Contao-Backends integriert. Per Klick überträgt die Erweiterung den Feldinhalt der Fallback-Sprache an den konfigurierten Übersetzungsanbieter und trägt das Ergebnis automatisch in das gerade bearbeitete Übersetzungsfeld ein.<br />
<br />
Die Felder Name und Beschreibung bei den Attributseinstellungen können damit auch übersetzt werden.<br />
<br />
Optional kann die Übersetzung auch für &quot;normale&quot; Contao-Inhalte freigeschaltet werden.<br />
<br />
siehe <a href="https://metamodels.readthedocs.io/de/latest/manual/extended/translator-bridge.html" target="_blank" rel="nofollow">https://metamodels.readthedocs.io/de...or-bridge.html</a></div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?149-MetaModels">MetaModels</category>
			<dc:creator>zonky</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89323-Neue-Erweiterung-zum-automatischen-Übersetzen-z-B-mit-DeepL</guid>
		</item>
		<item>
			<title>5.7.x TranslatableLabelInterface</title>
			<link>https://community.contao.org/de/showthread.php?89322-TranslatableLabelInterface&amp;goto=newpost</link>
			<pubDate>Wed, 03 Jun 2026 17:26:50 GMT</pubDate>
			<description>Hallo! 
 
Man kann ja jetzt in dem DCA bestimmte Übersetzungen (https://docs.contao.org/5.x/dev/framework/models/enumerations/) auch als enum und...</description>
			<content:encoded><![CDATA[<div>Hallo!<br />
<br />
Man kann ja jetzt in dem DCA bestimmte <a href="https://docs.contao.org/5.x/dev/framework/models/enumerations/" target="_blank">Übersetzungen</a> auch als <span style="font-family: Courier New">enum</span> und Yaml-Dateien angeben:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">PHP-Code:</div>
	<hr /><code class="bbcode_code"><code><span style="color: #000000">
<span style="color: #0000BB">rank</span><span style="color: #DD0000">'&nbsp;=&gt;&nbsp;&#91;<br />&nbsp;&nbsp;'</span><span style="color: #0000BB">inputType</span><span style="color: #DD0000">'&nbsp;=&gt;&nbsp;'</span><span style="color: #0000BB">select</span><span style="color: #DD0000">',<br />&nbsp;&nbsp;'</span><span style="color: #0000BB">enum</span><span style="color: #DD0000">'&nbsp;=&gt;&nbsp;\Babelfisch\FossilsBundle\Data\TaxonomicRanks::class,&nbsp;<br /></span>
</span>
</code></code><hr />
</div>Funktioniert super, nur stehe ich gerade auf dem Schlauch, wie ich das in einem DCA-Callback selber verwenden kann. Ich rufe es jetzt so in einem Label Callback auf:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">PHP-Code:</div>
	<hr /><code class="bbcode_code"><code><span style="color: #000000">
<span style="color: #0000BB"></span><span style="color: #007700">public&nbsp;function&nbsp;</span><span style="color: #0000BB">addIcon</span><span style="color: #007700">(</span><span style="color: #0000BB">$row</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$label</span><span style="color: #007700">):&nbsp;</span><span style="color: #0000BB">string<br /></span><span style="color: #007700">{<br />&nbsp;&nbsp;</span><span style="color: #0000BB">$strRank&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">TaxonomicRanks</span><span style="color: #007700">::</span><span style="color: #0000BB">from</span><span style="color: #007700">(</span><span style="color: #0000BB">$row</span><span style="color: #007700">&#91;</span><span style="color: #DD0000">'rank'</span><span style="color: #007700">&#93;)-&gt;</span><span style="color: #0000BB">label</span><span style="color: #007700">();&nbsp;<br /></span><span style="color: #0000BB"></span>
</span>
</code></code><hr />
</div>Der Wert ist jetzt bspw. <span style="font-family: Courier New">'class'</span> und ich möchte <span style="font-family: Courier New">'Klasse'</span> zurückbekommen. Zurück bekomme ich aber <span style="font-family: Courier New">'rank.label.class'</span>. In der Select-Liste werden die verschiedenen Werte dagegen sauber übersetzt.<br />
<br />
Kann mir hier jemand weiterhelfen?<br />
<br />
Gruß</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?6-Entwickler-Fragen">Entwickler-Fragen</category>
			<dc:creator>Babelfisch</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89322-TranslatableLabelInterface</guid>
		</item>
		<item>
			<title>5.7.x SwiperJS flackert bei Flexbox</title>
			<link>https://community.contao.org/de/showthread.php?89321-SwiperJS-flackert-bei-Flexbox&amp;goto=newpost</link>
			<pubDate>Tue, 02 Jun 2026 20:08:56 GMT</pubDate>
			<description>Hallo, 
 
hat noch jemand das Problem das das der Slider flackert? 
 
Habe folgenden CSS code 
 
 
Code: 
--------- 
		.release-details {</description>
			<content:encoded><![CDATA[<div>Hallo,<br />
<br />
hat noch jemand das Problem das das der Slider flackert?<br />
<br />
Habe folgenden CSS code<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .release-details {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; display: flex;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; flex-direction: row;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; flex-wrap: wrap;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; justify-content: space-between;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; gap: 30px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; align-items: flex-start;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .release-info {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; display: flex;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; flex-direction: row;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; flex-wrap: wrap;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; justify-content: space-between;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; gap: 30px;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; flex: 1 1 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; align-content: baseline;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .release-cover {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; flex: 1 1 100%;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
}<br />
}</code><hr />
</div>dabei passt der slider immer die breite an, und der slider flackert. <br />
<br />
Ohne den CSS Code passt der slider ohen flackern.... am swiper css/js ist nichts geändert.</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?53-Layout-Templates-Holy-Grail">Layout / Templates / Holy Grail</category>
			<dc:creator>WebRoxx</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89321-SwiperJS-flackert-bei-Flexbox</guid>
		</item>
		<item>
			<title><![CDATA[Neues Attribut "Token"]]></title>
			<link>https://community.contao.org/de/showthread.php?89320-Neues-Attribut-quot-Token-quot&amp;goto=newpost</link>
			<pubDate>Tue, 02 Jun 2026 16:46:11 GMT</pubDate>
			<description>Das Attribut „Token“ erzeugt beim erstmaligen Speichern eines Datensatzes eine kryptographisch zufällige, unveränderliche Zeichenfolge (Token). 
...</description>
			<content:encoded><![CDATA[<div>Das Attribut „Token“ erzeugt beim erstmaligen Speichern eines Datensatzes eine kryptographisch zufällige, unveränderliche Zeichenfolge (Token).<br />
<br />
Typische Einsatzbereiche:<br />
<br />
* Eindeutige Bestellnummern oder Vorgangsnummern (z. B. TKN-aB3xYqUK)<br />
* Zugangsschlüssel oder Freigabe-Links im Frontend<br />
* Interne Referenz-IDs, die stabil bleiben müssen<br />
<br />
Das Token wird genau einmal generiert — beim ersten Speichern, solange das Feld noch leer ist. Jede weitere Speicherung des Datensatzes lässt den bestehenden Token unverändert. Auch ein direkter Aufruf von setDataFor() überschreibt einen vorhandenen Token nicht (Write-once-Schutz auf Datenbankebene).<br />
<br />
siehe <a href="https://metamodels.readthedocs.io/de/latest/manual/component/attribute/token.html" target="_blank" rel="nofollow">https://metamodels.readthedocs.io/de...ute/token.html</a></div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?149-MetaModels">MetaModels</category>
			<dc:creator>zonky</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89320-Neues-Attribut-quot-Token-quot</guid>
		</item>
		<item>
			<title>5.3.x tl_leads Datenbankfelder anlegen klappt nicht</title>
			<link>https://community.contao.org/de/showthread.php?89319-tl_leads-Datenbankfelder-anlegen-klappt-nicht&amp;goto=newpost</link>
			<pubDate>Tue, 02 Jun 2026 12:38:27 GMT</pubDate>
			<description>Hallo alle, 
 
 
Ich versuche die Leads terminal42 gmbh Erweiterung zu installieren, stoße dabei aber auf das Problem, dass der Contao Manager die...</description>
			<content:encoded><![CDATA[<div>Hallo alle,<br />
<br />
<br />
Ich versuche die Leads terminal42 gmbh Erweiterung zu installieren, stoße dabei aber auf das Problem, dass der Contao Manager die Tabellen nicht anlegen kann.<br />
<br />
Siehe Screenshot anbei. Woran könnte das liegen?<br />
<br />
C 5.3 wegen Meta-Models.<br />
TL_Leads 3.0.13 (wegen C5.3)<br />
<br />
<br />
Beste Grüße<br />
phreak<br />
<br />
<a href="https://community.contao.org/de/attachment.php?attachmentid=28389&amp;d=1780403930"  title="Name:  Screeenshot.png
Hits: 20
Größe:  206,1 KB">Screeenshot.png</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Angehängte Grafiken</legend>
			<ul>
			<li>
	<img class="inlineimg" src="https://community.contao.org/de/images/attach/png.gif" alt="Dateityp: png" />
	<a href="https://community.contao.org/de/attachment.php?attachmentid=28389&amp;d=1780403930" target="_blank">Screeenshot.png</a> 
(206,1 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?81-Formulare">Formulare</category>
			<dc:creator>phreak</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89319-tl_leads-Datenbankfelder-anlegen-klappt-nicht</guid>
		</item>
		<item>
			<title>Twig Telefonnummer formatieren</title>
			<link>https://community.contao.org/de/showthread.php?89318-Twig-Telefonnummer-formatieren&amp;goto=newpost</link>
			<pubDate>Mon, 01 Jun 2026 16:13:28 GMT</pubDate>
			<description><![CDATA[In einem 'inputType' => 'text' (in einem RSCE) gibt RedakteurIn im Backend eine Telefonnummer ein. Der Einfachheit halber ohne Angaben von bestimmten...]]></description>
			<content:encoded><![CDATA[<div>In einem <span style="font-family: Courier New">'inputType' =&gt; 'text'</span> (in einem RSCE) gibt RedakteurIn im Backend eine Telefonnummer ein. Der Einfachheit halber ohne Angaben von bestimmten Formatvorgaben.<br />
z.B: als 02982 4711 oder 01/12347110815<br />
<br />
Damit ich damit aber sogleich mein <span style="font-family: Courier New">href</span> sinnvoll mit formatieren kann, setze ich im Twig-Template dies wie folgt um:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">{% set t = myVarTel|trim|replace({' ': '', '/': '', '-': ''}) %}<br />
{% set href = t starts with '+' ? t : '+43' ~ (t starts with '0' ? t[1:] : t) %}<br />
&lt;a href=&quot;tel:{{ href }}&quot;&gt;{{ myVarTel }}&lt;/a&gt;</code><hr />
</div><span style="font-family: Courier New">t</span> wird aufgeräumt (Leerzeichen, Schrägstriche, Bindestriche entfernt)<br />
im <span style="font-family: Courier New">href</span> wird inline geprüft:<br />
• wenn <span style="font-family: Courier New">t</span> mit <span style="font-family: Courier New">+</span> anfängt » direkt verwenden<br />
• wenn <span style="font-family: Courier New">t</span> mit <span style="font-family: Courier New">0</span> anfängt » <span style="font-family: Courier New">+43</span> davor und führende 0 entfernen<br />
• sonst » <span style="font-family: Courier New">+43</span> davor<br />
<br />
Im Frontend kommt z.B. dies an:<br />
<span style="font-family: Courier New">&lt;a href=&quot;tel:+4329824711&quot;&gt;02982 4711&lt;/a&gt;</span></div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?53-Layout-Templates-Holy-Grail">Layout / Templates / Holy Grail</category>
			<dc:creator>derRenner</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89318-Twig-Telefonnummer-formatieren</guid>
		</item>
		<item>
			<title>5.7.x Äquivalent zu inputType pageTree für eigene Tabelle</title>
			<link>https://community.contao.org/de/showthread.php?89317-Äquivalent-zu-inputType-pageTree-für-eigene-Tabelle&amp;goto=newpost</link>
			<pubDate>Mon, 01 Jun 2026 13:08:51 GMT</pubDate>
			<description><![CDATA[Hallo! 
 
Ich habe eine Tabelle, die mit sorting mode 5 (Tree) definiert ist und Datensätze ähnlich wie tl_page über id -> pid verschachtelt. In...]]></description>
			<content:encoded><![CDATA[<div>Hallo!<br />
<br />
Ich habe eine Tabelle, die mit <span style="font-family: Courier New">sorting mode 5</span> (Tree) definiert ist und Datensätze ähnlich wie <span style="font-family: Courier New">tl_page</span> über <span style="font-family: Courier New">id -&gt; pid</span> verschachtelt. In einer anderen Tabelle möchte ich daraus einen Wert auswählen. Da es mehrere hundert Einträge sind, macht ein normales Dropdown keinen Sinn und ich bräuchte optimalerweise eine Auswahl ähnlich wie bei <span style="font-family: Courier New">'inputType'=&gt;'pageTree'</span>.<br />
<br />
Gibt es evtl. so etwas schon oder kann mir jemand einen Tipp geben, wie ich das am besten realisieren kann? Da so ein Picker für eine verschachtelte Tabelle ja eigentlich generisch ist, habe ich die Hoffnung, dass es da schon irgendetwas gibt oder zumindest etwas ähnliches, was ich für meine Erweiterung anpassen kann.<br />
<br />
Gruß</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?6-Entwickler-Fragen">Entwickler-Fragen</category>
			<dc:creator>Babelfisch</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89317-Äquivalent-zu-inputType-pageTree-für-eigene-Tabelle</guid>
		</item>
		<item>
			<title>5.7.x CSP mit inspiredminds/contao-glightbox</title>
			<link>https://community.contao.org/de/showthread.php?89316-CSP-mit-inspiredminds-contao-glightbox&amp;goto=newpost</link>
			<pubDate>Sat, 30 May 2026 22:52:13 GMT</pubDate>
			<description>inspiredminds/contao-glightbox  (bzw. glightbox, liegt nicht an der Contao Variante) hat ein CSP Problem.  
 
Den einen hatte ich als PR bei...</description>
			<content:encoded><![CDATA[<div>inspiredminds/contao-glightbox  (bzw. glightbox, liegt nicht an der Contao Variante) hat ein CSP Problem. <br />
<br />
Den einen hatte ich als PR bei contao-glightbox eingereicht und wurde auch schon übernommen und released. (1.0.8) :)<br />
<br />
Aber wenn man ein Bild anklickt und das geöffnet wird, mit Bildunterschrift, werden 2 Style Angaben an gemeckert. Leider zeigt mir der Browser nicht welche.<br />
Also habe ich den zusätzlichen Quelltext durchwühlt und zwei gefunden, die ich auch gleich in die config.yaml entsprechend mit regex definiert habe.<br />
<div class="bbcode_container">
	<div class="bbcode_description">HTML-Code:</div>
	<hr /><code class="bbcode_code">style=&quot;max-height: calc(100vh - 85px)&quot;<br />
style=&quot;max-width: 745px;&quot;</code><hr />
</div>85px ist die Höhe von der Bildunterschrift, 745px die Breite des Bildes bei meiner Browser-Größe, die kann variieren.<br />
<br />
Aber das kann ja nichts bringen, denn Contao bringt ja im Header nur hashes mit für alle gefundenen style Angaben die mit den Definitionen allowed_inline_styles matchen.<br />
Nur, beim Generieren der Seite gibt es ja die beiden speziellen style Angaben ja noch gar nicht, die werden per JS ja erst auf Mausklick generiert. :mad:<br />
<br />
Das scheint auch schon jemand anderes im Original gefunden zu haben:<br />
<a href="https://github.com/biati-digital/glightbox/issues/579" target="_blank" rel="nofollow">https://github.com/biati-digital/glightbox/issues/579</a><br />
und noch was, was mir nicht aufgefallen ist:<br />
<a href="https://github.com/biati-digital/glightbox/issues/568" target="_blank" rel="nofollow">https://github.com/biati-digital/glightbox/issues/568</a><br />
<br />
Auch wenn eine Lösung (für #579) angeboten wurde, es gibt noch kein PR dafür. Grund könnte sein, der Entwickler hat laut einen anderem Ticket geschrieben, das die PRs eh auf Hold liegen, da er seit längerer Zeit an Version 4 arbeitet.<br />
<br />
Vielleicht hat ja ein JS Profi von uns verstanden was dort angedeutet wurde und kann das temporär für Contao beheben? (ich kann kein JS)<br />
<br />
Ich habe noch eine schräge Idee im Hinterkopf und teste das derweil mal aus.</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?177-Contao-und-Sicherheit">Contao und Sicherheit</category>
			<dc:creator>BugBuster</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89316-CSP-mit-inspiredminds-contao-glightbox</guid>
		</item>
		<item>
			<title>5.7.x mod_navigation_accessibility - Breakpoint</title>
			<link>https://community.contao.org/de/showthread.php?89315-mod_navigation_accessibility-Breakpoint&amp;goto=newpost</link>
			<pubDate>Thu, 28 May 2026 20:04:29 GMT</pubDate>
			<description><![CDATA[Frage: Wie kann ich unter Contao 5.7.x bei dem Navigationsmodul mit dem "mod_navigation_accessibility" Template unter einem Contao TWIG-Layout einen...]]></description>
			<content:encoded><![CDATA[<div>Frage: Wie kann ich unter Contao 5.7.x bei dem Navigationsmodul mit dem &quot;mod_navigation_accessibility&quot; Template unter einem Contao TWIG-Layout einen Individuellen Breakpoint setzen, ab wann das Mobile Menü eingeblendet wird?<br />
Ich habe mittels CSS folgendes hinzu gefügt:<br />
.navigation-main {<br />
  --nav-breakpoint: 1220;<br />
}<br />
Kann mir da eventl. jemand einen Tip geben?</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?53-Layout-Templates-Holy-Grail">Layout / Templates / Holy Grail</category>
			<dc:creator>sdahlmann</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89315-mod_navigation_accessibility-Breakpoint</guid>
		</item>
		<item>
			<title>5.7.x 5.7.5 - Seitenlayout - Experteneinstellungen - geschlossener Zustand lässt sich nicht</title>
			<link>https://community.contao.org/de/showthread.php?89314-5-7-5-Seitenlayout-Experteneinstellungen-geschlossener-Zustand-lässt-sich-nicht&amp;goto=newpost</link>
			<pubDate>Thu, 28 May 2026 09:19:30 GMT</pubDate>
			<description><![CDATA[Wenn ich in Contao 5.7.5 nach Layout > Themes > Seitenlayout gehe und das angelegte Seitenlayout mir anschaue, fällt mir auf , das sich nach dem...]]></description>
			<content:encoded><![CDATA[<div>Wenn ich in Contao 5.7.5 nach Layout &gt; Themes &gt; Seitenlayout gehe und das angelegte Seitenlayout mir anschaue, fällt mir auf , das sich nach dem speichern von Änderungen der Punkt Experteneinstellungen wieder aufklappt. <br />
Auch nach dem Schließen dieses Bereiches und speichern und verlassen wird das Schließen nicht gespeichert. Wenn man wieder ins Seitenlayout reingeht ist der Punkt Experteneinstellungen wieder offen.<br />
<br />
Ist dieses Verhalten nur bei mir oder kann jemand dies Verhalten nachvollziehen.<br />
Unter 5.3 ist dies bei mir nicht so.<br />
<br />
<br />
Danke <br />
<br />
Hans-Jürgen</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?53-Layout-Templates-Holy-Grail">Layout / Templates / Holy Grail</category>
			<dc:creator>hjo</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89314-5-7-5-Seitenlayout-Experteneinstellungen-geschlossener-Zustand-lässt-sich-nicht</guid>
		</item>
		<item>
			<title>5.3.x GELÖST: Backend-Anmeldung verschwunden...</title>
			<link>https://community.contao.org/de/showthread.php?89313-GELÖST-Backend-Anmeldung-verschwunden&amp;goto=newpost</link>
			<pubDate>Wed, 27 May 2026 20:00:39 GMT</pubDate>
			<description>Hallo zusammen! 
 
Auf einer neu gestalteten Website ist plötzlich keine Anmeldung im Backend mehr möglich. Der entsprechende Link...</description>
			<content:encoded><![CDATA[<div>Hallo zusammen!<br />
<br />
Auf einer neu gestalteten Website ist plötzlich keine Anmeldung im Backend mehr möglich. Der entsprechende Link <a href="https://www.xyz.de/contao" target="_blank" rel="nofollow">https://www.xyz.de/contao</a> bringt die Fehlermeldung &quot;500 Internal Server Error&quot;. Alle Dateien, Contao-Manager sowie die komplette Website sind noch vorhanden - nur der Backend-Zugang scheitert. Der Kunde hat nur die Backend-Zugangsdaten...<br />
Hat jemand eine Idee, was die Ursache sein könnte oder wo ich suchen soll?<br />
<br />
Vielen Dank für eure Tipps!<br />
Roland</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?48-Installation-Update">Installation / Update</category>
			<dc:creator>RoGer</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89313-GELÖST-Backend-Anmeldung-verschwunden</guid>
		</item>
		<item>
			<title>5.7.x CSP bei Tabellen aus TinyMCE</title>
			<link>https://community.contao.org/de/showthread.php?89312-CSP-bei-Tabellen-aus-TinyMCE&amp;goto=newpost</link>
			<pubDate>Wed, 27 May 2026 12:03:28 GMT</pubDate>
			<description><![CDATA[In einem Textelement wurde eine Tabelle angelegt und gefüllt. 
Tiny generiert nun daraus sowas: 
 
Code: 
--------- 
<table style="border-collapse:...]]></description>
			<content:encoded><![CDATA[<div>In einem Textelement wurde eine Tabelle angelegt und gefüllt.<br />
Tiny generiert nun daraus sowas:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;table style=&quot;border-collapse: collapse; width: 46%; height: 122px; border-width: 1px;&quot; border=&quot;1&quot;&gt;<br />
&lt;tbody&gt;<br />
&nbsp; &lt;tr style=&quot;height: 20.3333px;&quot;&gt;<br />
&nbsp; &nbsp; &lt;td style=&quot;width: 15.9211%; text-align: center;&quot;&gt;2&lt;/td&gt;<br />
&nbsp; &nbsp; &lt;td style=&quot;width: 84.0789%;&quot;&gt;Kartoffeln&lt;/td&gt;<br />
&nbsp; &lt;/tr&gt;<br />
&lt;/tbody&gt;<br />
&lt;/table&gt;</code><hr />
</div>Kann ich das über config.yml so erlauben in contao.csp.allowed_inline_styles, damit es CSP sicher ist?<br />
Wenn ja was muss ich da wie reinschreiben?</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?177-Contao-und-Sicherheit">Contao und Sicherheit</category>
			<dc:creator>BugBuster</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89312-CSP-bei-Tabellen-aus-TinyMCE</guid>
		</item>
		<item>
			<title>4.8.x Contao 4.8 X-Frame SAMEORIGIN Problem</title>
			<link>https://community.contao.org/de/showthread.php?89311-Contao-4-8-X-Frame-SAMEORIGIN-Problem&amp;goto=newpost</link>
			<pubDate>Mon, 25 May 2026 11:59:38 GMT</pubDate>
			<description>Hallo zusammen, 
 
ich habe ein älteres Contao-4.8-Projekt, bei dem ich eine einzelne Frontend-Seite in einen externen iFrame einbinden soll. 
...</description>
			<content:encoded><![CDATA[<div>Hallo zusammen,<br />
<br />
ich habe ein älteres Contao-4.8-Projekt, bei dem ich eine einzelne Frontend-Seite in einen externen iFrame einbinden soll.<br />
<br />
Aktuell wird die Einbettung durch X-Frame-Options: SAMEORIGIN blockiert.<br />
Laut Hoster wird der Header von der Anwendung bzw. nelmio/security-bundle gesetzt.<br />
<br />
Ich habe es zuerst mal über .htaccess probiert:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"><br />
&lt;Files &quot;testseite.html&quot;&gt;<br />
Header always unset X-Frame-Options<br />
Header always set Content-Security-Policy &quot;frame-ancestors 'self' https://externe-domain.com&quot;</code><hr />
</div>Das hat leider nicht funktioniert, der Header blieb auf SAMEORIGIN.<br />
Die Seite ist allerdings keine physische Datei, sondern ein normaler Contao-Seitenalias.<br />
Danach habe ich testweise eine config/config.yml angelegt und es damit probiert:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">nelmio_security:<br />
&nbsp; &nbsp; csp:<br />
&nbsp; &nbsp; &nbsp; &nbsp; enabled: true<br />
&nbsp; &nbsp; &nbsp; &nbsp; enforce:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; frame-ancestors:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; - 'self'<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; - 'https://externe-domain.com'</code><hr />
</div>Nach Cache-Leerung gab es dabei einen 500er, daher habe ich das wieder zurückgebaut.<br />
Hat jemand eine Idee, wie man das in ´nem Contao-4.8-Setup machen kann, wenn nur eine einzelne Seite extern eingebettet werden soll?<br />
<br />
Vielen lieben Dank für Tipps und Hilfen.</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?48-Installation-Update">Installation / Update</category>
			<dc:creator>Cerebro</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89311-Contao-4-8-X-Frame-SAMEORIGIN-Problem</guid>
		</item>
		<item>
			<title>5.7.x Doctrine Relations und das Contao DCA</title>
			<link>https://community.contao.org/de/showthread.php?89310-Doctrine-Relations-und-das-Contao-DCA&amp;goto=newpost</link>
			<pubDate>Mon, 25 May 2026 08:49:43 GMT</pubDate>
			<description>Hallo und einen schönen Pfingstmontag! 
 
Ich bastle gerade an meiner ersten Conta-Erweiterung mit Symfony und habe eine kurze Frage zu Relations und...</description>
			<content:encoded><![CDATA[<div>Hallo und einen schönen Pfingstmontag!<br />
<br />
Ich bastle gerade an meiner ersten Conta-Erweiterung mit Symfony und habe eine kurze Frage zu Relations und was der korrekte oder üblichste Weg ist.<br />
<br />
Gegeben sind zwei Tabellen, die über eine ManyToOne Beziehung verbunden sind. Die Beziehung in den Entities sieht vereinfach so aus:<br />
<br />
MyItem.php<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">#[ORM\Table(name: &quot;tl_my_item&quot;)]<br />
class MyItem<br />
{<br />
&nbsp; …<br />
&nbsp; #[ORM\ManyToOne(targetEntity: MyCollection::class, inversedBy: 'items')]<br />
&nbsp; private ?MyCollection $collection = null;</code><hr />
</div>MyCollection.php<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">#[ORM\Table(name: 'tl_my_collection')]<br />
class MyCollection<br />
{<br />
&nbsp; …<br />
&nbsp; #[ORM\OneToMany(mappedBy: 'collection', targetEntity: MyItem::class)]<br />
&nbsp; &nbsp; private Collection $items;</code><hr />
</div>In der <span style="font-family: Courier New">tl_my_item</span> wird dann automatisch die Spalte <span style="font-family: Courier New">collection_id</span> angelegt.<br />
<br />
Entsprechend muss ich das Feld in der DCA auch benennen:<br />
<br />
tl_my_item.php<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">'fields' =&gt; [<br />
&nbsp; …<br />
&nbsp; 'collection_id' =&gt; [<br />
&nbsp; &nbsp; 'inputType' =&gt; 'select',<br />
&nbsp; &nbsp; 'filter' =&gt; true,<br />
&nbsp; &nbsp; 'sorting' =&gt; true,<br />
&nbsp; &nbsp; 'foreignKey' =&gt; 'tl_my_collection.title',<br />
&nbsp; &nbsp; 'eval' =&gt; ['mandatory' =&gt; true, 'includeBlankOption' =&gt; true, 'tl_class' =&gt; 'w50'],<br />
&nbsp; &nbsp; 'relation' =&gt; ['type' =&gt; 'belongsTo', 'load' =&gt; 'lazy'],<br />
&nbsp; ]</code><hr />
</div>So richtig gefällt mir das aber nicht, weshalb ich im Entity mit <span style="font-family: Courier New">#[ORM\JoinColumn</span> den Spaltennamen explizit angegeben habe:<br />
<br />
MyItem.php<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">#[ORM\Table(name: &quot;tl_my_item&quot;)]<br />
#[ORM\JoinColumn(name: 'collection', referencedColumnName: 'id')]<br />
class MyItem<br />
{<br />
&nbsp; …<br />
&nbsp; #[ORM\ManyToOne(targetEntity: MyCollection::class, inversedBy: 'items')]<br />
&nbsp; private ?MyCollection $collection = null;</code><hr />
</div>Dann wir die Spalte <span style="font-family: Courier New">collection</span> genannte und kann so im DCA angesprochen werden.<br />
<br />
Meine Frage ist jetzt, was hier <i>Best practice</i> ist oder ob es egal ist oder ob ich gleich etwas ganz falsch gemacht habe?<br />
<br />
Gruß</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?6-Entwickler-Fragen">Entwickler-Fragen</category>
			<dc:creator>Babelfisch</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89310-Doctrine-Relations-und-das-Contao-DCA</guid>
		</item>
		<item>
			<title>5.7.x Fehler in Managed Edition</title>
			<link>https://community.contao.org/de/showthread.php?89309-Fehler-in-Managed-Edition&amp;goto=newpost</link>
			<pubDate>Thu, 21 May 2026 14:41:08 GMT</pubDate>
			<description>Hallo! 
 
Ich teste gerade die Managed Edition in der aktuellen Version 5.7.5 lokal. Alles lief ein paar Tage gut doch jetzt bekomme ich im Frontend...</description>
			<content:encoded><![CDATA[<div>Hallo!<br />
<br />
Ich teste gerade die Managed Edition in der aktuellen Version 5.7.5 lokal. Alles lief ein paar Tage gut doch jetzt bekomme ich im Frontend aktuell immer den Hinweis, dass ein Fehler aufgetreten ist. Im Log steht folgendes:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">[2026-05-21T14:14:04.698239+00:00] request.INFO: Matched route &quot;tl_page.2.root&quot;. {&quot;route&quot;:&quot;tl_page.2.root&quot;,&quot;route_parameters&quot;:{&quot;_controller&quot;:&quot;Contao\\CoreBundle\\Controller\\Page\\RegularPageController&quot;,&quot;_scope&quot;:&quot;frontend&quot;,&quot;_locale&quot;:&quot;de&quot;,&quot;_format&quot;:&quot;html&quot;,&quot;_canonical_route&quot;:&quot;tl_page.2&quot;,&quot;parameters&quot;:&quot;&quot;,&quot;pageModel&quot;:{&quot;Contao\\PageModel&quot;:[]},&quot;_route&quot;:&quot;tl_page.2.root&quot;,&quot;_route_object&quot;:{&quot;Symfony\\Component\\Routing\\Route&quot;:[]}},&quot;request_uri&quot;:&quot;https://mfoss.local/&quot;,&quot;method&quot;:&quot;GET&quot;} {&quot;request_uri&quot;:&quot;https://mfoss.local/&quot;,&quot;request_method&quot;:&quot;GET&quot;}<br />
[2026-05-21T14:14:04.883339+00:00] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Lock\Exception\InvalidArgumentException: &quot;Semaphore extension (sysvsem) is required.&quot; at SemaphoreStore.php line 39 {&quot;exception&quot;:&quot;[object] (Symfony\\Component\\Lock\\Exception\\InvalidArgumentException(code: 0): Semaphore extension (sysvsem) is required. at /Users/…/Sites/mfoss/managed-edition/vendor/symfony/lock/Store/SemaphoreStore.php:39)&quot;} {&quot;request_uri&quot;:&quot;https://mfoss.local/&quot;,&quot;request_method&quot;:&quot;GET&quot;}<br />
[2026-05-21T14:14:04.889791+00:00] php.ERROR: Warning: Cannot modify header information - headers already sent by (output started at /Users/…/Sites/mfoss/managed-edition/vendor/symfony/http-foundation/Response.php:1285) {&quot;exception&quot;:&quot;[object] (ErrorException(code: 0): Warning: Cannot modify header information - headers already sent by (output started at /Users/…/Sites/mfoss/managed-edition/vendor/symfony/http-foundation/Response.php:1285) at /Users/…/Sites/mfoss/managed-edition/vendor/contao/core-bundle/src/HttpKernel/Header/NativeHeaderStorage.php:29)&quot;} {&quot;request_uri&quot;:&quot;https://mfoss.local/&quot;,&quot;request_method&quot;:&quot;GET&quot;}<br />
[2026-05-21T14:14:04.911151+00:00] messenger.INFO: Stopping worker. {&quot;transport_names&quot;:[&quot;contao_prio_high&quot;]} {&quot;request_uri&quot;:&quot;https://mfoss.local/&quot;,&quot;request_method&quot;:&quot;GET&quot;}</code><hr />
</div>Die Seiten selbst werden korrekt gerendert und darunter kommt dann jeweils die Meldung „An error occurred“ von Contao. Der Fehler kommt auch nur in der Produktivumgebung. Im Debug Modus kommt kein Fehler. Das Backend funktioniert auch fehlerfrei.<br />
<br />
Den Cache habe ich in den Console schon gelöscht, bring aber nichts.<br />
<br />
Ich hatte heute einmal ein <i>composer update</i> in Contao laufen lassen, was einige Symfony Komponenten aktualisiert hat. Aber das dürfte ja nicht das Problem sein oder?<br />
<br />
Meine composer.json:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">{<br />
&nbsp; &nbsp; &quot;name&quot;: &quot;contao/managed-edition&quot;,<br />
&nbsp; &nbsp; &quot;description&quot;: &quot;Contao Managed Edition&quot;,<br />
&nbsp; &nbsp; &quot;license&quot;: &quot;LGPL-3.0-or-later&quot;,<br />
&nbsp; &nbsp; &quot;type&quot;: &quot;project&quot;,<br />
&nbsp; &nbsp; &quot;require&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/calendar-bundle&quot;: &quot;^5.7&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/comments-bundle&quot;: &quot;^5.7&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/conflicts&quot;: &quot;@dev&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/faq-bundle&quot;: &quot;^5.7&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/listing-bundle&quot;: &quot;^5.7&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/manager-bundle&quot;: &quot;5.7.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/news-bundle&quot;: &quot;^5.7&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/newsletter-bundle&quot;: &quot;^5.7&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;madeyourday/contao-rocksolid-custom-elements&quot;: &quot;^2.4&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;terminal42/notification_center&quot;: &quot;^2.7&quot;<br />
&nbsp; &nbsp; },<br />
&nbsp; &nbsp; &quot;conflict&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao-components/installer&quot;: &quot;&lt;1.3&quot;<br />
&nbsp; &nbsp; },<br />
&nbsp; &nbsp; &quot;config&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;allow-plugins&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;composer/package-versions-deprecated&quot;: true,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;contao-community-alliance/composer-plugin&quot;: true,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;contao-components/installer&quot;: true,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/manager-plugin&quot;: true,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;php-http/discovery&quot;: false<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; },<br />
&nbsp; &nbsp; &quot;extra&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao-component-dir&quot;: &quot;assets&quot;<br />
&nbsp; &nbsp; },<br />
&nbsp; &nbsp; &quot;scripts&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;post-install-cmd&quot;: [<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;@php vendor/bin/contao-setup&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; ],<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;post-update-cmd&quot;: [<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;@php vendor/bin/contao-setup&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; ]<br />
&nbsp; &nbsp; }<br />
}</code><hr />
</div>Irgendwelche Ideen oder Tipps?<br />
<br />
<b>Nachtrag</b> für alle, die ein ähnliches Problem haben und nicht alles durchlesen wollen: Der Fehler lang in zwei verschiedenen PHP-Installationen lokal bei mir auf dem Rechner. Beim Aufruf der Contao Konsole ohne PHP:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">vendor/bin/contao-console cache:clear</code><hr />
</div>… wurde über den Pfad eine andere PHP-Installation genutzt, als über den direkten Aufruf mit PHP:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">php vendor/bin/contao-console cache:clear</code><hr />
</div>Der Grund ist, dass MAMP die CLI-Version von PHP über einen Alias steuert. Der Fehler kam daher, dass im PHP über den Pfad die PHP-Extension <span style="font-family: Courier New">sysvsem</span> installiert ist und in der CLI-/Web-Version von PHP nicht. Dadruch waren die Scripte im Cache nicht mit dem Web-PHP ausführbar.<br />
<br />
Einfachste Lösung: Die Contao Konsole immer mit <span style="font-family: Courier New">php</span> aufrufen.</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?48-Installation-Update">Installation / Update</category>
			<dc:creator>Babelfisch</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89309-Fehler-in-Managed-Edition</guid>
		</item>
		<item>
			<title>Gramm-Preis unter 1 Cent, Mindestabnahme 100 g aufwärts.</title>
			<link>https://community.contao.org/de/showthread.php?89308-Gramm-Preis-unter-1-Cent-Mindestabnahme-100-g-aufwärts&amp;goto=newpost</link>
			<pubDate>Thu, 21 May 2026 13:55:48 GMT</pubDate>
			<description>Hi Leute, 
 
mein Vorhaben: Ein *Produkttyp wird nach Menge* verkauft. Zum Beispiel Mehl. Der kg-Preis beträgt 5 Euro. Die Mindestabnahme beträgt 100...</description>
			<content:encoded><![CDATA[<div>Hi Leute,<br />
<br />
mein Vorhaben: Ein <b>Produkttyp wird nach Menge</b> verkauft. Zum Beispiel Mehl. Der kg-Preis beträgt 5 Euro. Die Mindestabnahme beträgt 100 g. (Das konnte ich durch die Staffelpreise lösen). Ich geben also in 'Quantitiy' mindestens 100 ein. Somit hätte ich Mehl für 50 Cent im Warnkorb. Bedeutet, ich müsste aber die Preise in Gramm angeben. Das wären hier 0,005 Cent/Gramm. Das kann ich aber nicht. Anders herum kann ich aber auch nicht 0,5 kg in 'Quantitiy' eingeben. Was ja auch sinn macht.<br />
<br />
Übersehe ich hier was, oder ist das so nicht möglich?<br />
<br />
Lieben Dank euch<br />
Micha</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?111-isotope">isotope</category>
			<dc:creator>Dillinja</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89308-Gramm-Preis-unter-1-Cent-Mindestabnahme-100-g-aufwärts</guid>
		</item>
		<item>
			<title>Sicherung funktioniert nicht, Update schlägt auch fehl</title>
			<link>https://community.contao.org/de/showthread.php?89307-Sicherung-funktioniert-nicht-Update-schlägt-auch-fehl&amp;goto=newpost</link>
			<pubDate>Thu, 21 May 2026 09:08:07 GMT</pubDate>
			<description>Hallo zusammen, 
 
Contao 4.9.16, PHP 8.1 
 
Wir wollen von der 4.9 (über die 4.13 usw) auf Contao 5.7 updaten. 
Wollte zuerst ein Datenbank Backup...</description>
			<content:encoded><![CDATA[<div>Hallo zusammen,<br />
<br />
Contao 4.9.16, PHP 8.1<br />
<br />
Wir wollen von der 4.9 (über die 4.13 usw) auf Contao 5.7 updaten.<br />
Wollte zuerst ein Datenbank Backup machen. Backup lässt sich aber nicht ausführen - folgende Fehlermeldung:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">Internal Server Error<br />
<br />
Non-static method Softleister\BackupDB\BackupDbRun::run() cannot be called statically</code><hr />
</div>Dachte mir dann, vielleicht backupDB (Version 1.4.2) updaten, was leider auch fehlschlägt:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&gt; Resolving dependencies using Composer Cloud v3.9.3<br />
[6.8MiB/0.24s] Loading composer repositories with package information<br />
[84.4MiB/17.24s] Updating dependencies<br />
[100.5MiB/17.58s] Your requirements could not be resolved to an installable set of packages.<br />
[100.5MiB/17.58s] <br />
&nbsp; Problem 1<br />
&nbsp; &nbsp; - contao/manager-bundle is locked to version 4.9.16 and an update of this package was not requested.<br />
&nbsp; &nbsp; - contao/manager-bundle 4.9.16 requires symfony/proxy-manager-bridge 4.4.* -&gt; satisfiable by symfony/proxy-manager-bridge[v4.4.25].<br />
&nbsp; &nbsp; - friendsofphp/proxy-manager-lts v1.0.5 requires laminas/laminas-code ~3.4.1|^4.0 -&gt; satisfiable by laminas/laminas-code[3.4.1].<br />
&nbsp; &nbsp; - laminas/laminas-code 3.4.1 requires php ^7.1 -&gt; your php version (8.1.32.0) does not satisfy that requirement.<br />
&nbsp; &nbsp; - symfony/proxy-manager-bridge v4.4.25 requires friendsofphp/proxy-manager-lts ^1.0.2 -&gt; satisfiable by friendsofphp/proxy-manager-lts[v1.0.5].<br />
[100.5MiB/17.58s] &lt;warning&gt;Running update with --no-dev does not mean require-dev is ignored, it just means the packages will not be installed. If dev requirements are blocking the update you have to resolve those problems.&lt;/warning&gt;<br />
[57.3MiB/17.62s] Memory usage: 57.25MB (peak: 206.66MB), time: 17.63s.<br />
[57.3MiB/17.62s] Finished Composer Cloud resolving.<br />
# Cloud Job ID z2bT336RgAHrW6dMHJStGu4eTRg6w92nmJK4OVTdtpbetAnOSHZtxYEJe1YPE3GCFocIYhHFBmjRVDm7LyDjWjnuxpszCOPjbFX5EW8zw8stVH3ZpTWdQ failed</code><hr />
</div>Folgendes steht noch in der composer.json<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">{<br />
&nbsp; &nbsp; &quot;name&quot;: &quot;contao/managed-edition&quot;,<br />
&nbsp; &nbsp; &quot;type&quot;: &quot;project&quot;,<br />
&nbsp; &nbsp; &quot;description&quot;: &quot;Contao Open Source CMS&quot;,<br />
&nbsp; &nbsp; &quot;license&quot;: &quot;LGPL-3.0-or-later&quot;,<br />
&nbsp; &nbsp; &quot;authors&quot;: [<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;name&quot;: &quot;Leo Feyer&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;homepage&quot;: &quot;https://github.com/leofeyer&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; ],<br />
&nbsp; &nbsp; &quot;require&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;php&quot;: &quot;^8.1&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;christianbarkowsky/rel-canonical&quot;: &quot;^3.3&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;codefog/contao-mobile_menu&quot;: &quot;^2.7&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/calendar-bundle&quot;: &quot;4.9.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/comments-bundle&quot;: &quot;4.9.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/conflicts&quot;: &quot;*@dev&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/faq-bundle&quot;: &quot;4.9.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/listing-bundle&quot;: &quot;4.9.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/manager-bundle&quot;: &quot;4.9.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/news-bundle&quot;: &quot;4.9.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao/newsletter-bundle&quot;: &quot;4.9.*&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;do-while/contao-backupdb-bundle&quot;: &quot;^1.6&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;erdmannfreunde/euf_overlay&quot;: &quot;^1.3&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;madeyourday/contao-rocksolid-columns&quot;: &quot;^2.0&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;madeyourday/contao-rocksolid-custom-elements&quot;: &quot;^2.2&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;madeyourday/contao-rocksolid-slider&quot;: &quot;^2.0&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;netzmacht/contao-font-awesome-inserttag&quot;: &quot;^2.0&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;oveleon/contao-cookiebar&quot;: &quot;^1.8&quot;<br />
&nbsp; &nbsp; },<br />
&nbsp; &nbsp; &quot;conflict&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao-components/installer&quot;: &quot;&lt;1.3&quot;<br />
&nbsp; &nbsp; },<br />
&nbsp; &nbsp; &quot;require-dev&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;sensiolabs/security-checker&quot;: &quot;^4.1&quot;<br />
&nbsp; &nbsp; },<br />
&nbsp; &nbsp; &quot;extra&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;branch-alias&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;dev-4.6&quot;: &quot;4.6.x-dev&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; },<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;contao-component-dir&quot;: &quot;assets&quot;<br />
&nbsp; &nbsp; },<br />
&nbsp; &nbsp; &quot;autoload&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;psr-4&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;App\\&quot;: &quot;src/&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; },<br />
&nbsp; &nbsp; &quot;scripts&quot;: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;post-install-cmd&quot;: [<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;Contao\\ManagerBundle\\Composer\\ScriptHandler::initializeApplication&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; ],<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;post-update-cmd&quot;: [<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;Contao\\ManagerBundle\\Composer\\ScriptHandler::initializeApplication&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; ]<br />
&nbsp; &nbsp; }<br />
}</code><hr />
</div>Hier hab ich manuell folgendes ursprüngliche ausgebessert, was aber eben auch nicht geholfen hat<br />
&quot;php&quot;: &quot;^7.1&quot;,<br />
&quot;do-while/contao-backupdb-bundle&quot;: &quot;^1.3&quot;,<br />
<br />
<br />
<br />
Bitte um Hilfestellung! Danke...</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?25-backupDB">backupDB</category>
			<dc:creator>Claudi</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89307-Sicherung-funktioniert-nicht-Update-schlägt-auch-fehl</guid>
		</item>
		<item>
			<title>con2net/contao-anti-spam-form-bundle  / Erklärung Meldungen im Systemlog</title>
			<link>https://community.contao.org/de/showthread.php?89306-con2net-contao-anti-spam-form-bundle-Erklärung-Meldungen-im-Systemlog&amp;goto=newpost</link>
			<pubDate>Thu, 21 May 2026 09:03:34 GMT</pubDate>
			<description>Hallo zusammen, 
 
ich habe con2net/contao-anti-spam-form-bundle zur Spamabweht installiert. Es ist auf packagist ja sehr gut dokumentiert, vielen...</description>
			<content:encoded><![CDATA[<div>Hallo zusammen,<br />
<br />
ich habe con2net/contao-anti-spam-form-bundle zur Spamabweht installiert. Es ist auf packagist ja sehr gut dokumentiert, vielen Dank schon mal dafür!<br />
<br />
Die Meldungen im Systemlog kann ich aber nicht deuten und bin unsicher, ob ich etwas falsch konfiguriert habe.<br />
Kann mir jemand die Meldungen erklären?<br />
<br />
SPAM DETECTED: No valid JavaScript token! Bot without JS execution.<br />
<br />
ALTCHA FAILED: No payload received for field &quot;altcha&quot;<br />
<br />
Vielleicht kann con2net alle möglichen Meldungen mit Erklärung der Doku hinzufügen?<br />
<br />
Viele Grüße,<br />
conter</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?119-Sonstige-Erweiterungen">Sonstige Erweiterungen</category>
			<dc:creator>conter</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89306-con2net-contao-anti-spam-form-bundle-Erklärung-Meldungen-im-Systemlog</guid>
		</item>
		<item>
			<title>Webgo Probleme - Contao Seiten laufen nicht mehr</title>
			<link>https://community.contao.org/de/showthread.php?89305-Webgo-Probleme-Contao-Seiten-laufen-nicht-mehr&amp;goto=newpost</link>
			<pubDate>Tue, 19 May 2026 12:40:41 GMT</pubDate>
			<description>Hallo liebe Community, 
 
seit heute morgen laufen einige Contao Seiten auf meinem Webgo Server nicht mehr. Es handelt sich um ältere Installationen...</description>
			<content:encoded><![CDATA[<div>Hallo liebe Community,<br />
<br />
seit heute morgen laufen einige Contao Seiten auf meinem Webgo Server nicht mehr. Es handelt sich um ältere Installationen die noch unter 4.9 und 4.13 laufen. Aktuell ist dort PHP 7.4 im Extended Support aktiv.<br />
Ins Backend komme ich auch nicht mehr. Fehler: Call to a member function getAttribute() on null. Hat jemand von euch ein ähnliches Problem beobachtet? Ich habe den Support schon kontaktiert aber sie scheinen selber nicht recht zu wissen, was der Fehler ist.<br />
<br />
Grüße<br />
Dirk</div>

]]></content:encoded>
			<category domain="https://community.contao.org/de/forumdisplay.php?175-Webgo">Webgo</category>
			<dc:creator>dirksche</dc:creator>
			<guid isPermaLink="true">https://community.contao.org/de/showthread.php?89305-Webgo-Probleme-Contao-Seiten-laufen-nicht-mehr</guid>
		</item>
	</channel>
</rss>
