<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://forum.wbce.org/extern.php?action=feed&amp;fid=3&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[WBCE CMS Forum / Entwicklung WBCE CMS Core+Backend]]></title>
		<link>https://forum.wbce.org/index.php</link>
		<description><![CDATA[The most recent topics at WBCE CMS Forum.]]></description>
		<lastBuildDate>Thu, 09 Apr 2026 10:12:48 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[elFinder — PHP 8.5 Deprecated Fix]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=5804&amp;action=new</link>
			<description><![CDATA[<p>Ok. Weil der Fehler mir bisher nicht wirklich aufgefallen im Error_Log etc.</p>]]></description>
			<author><![CDATA[dummy@example.com (chap)]]></author>
			<pubDate>Thu, 09 Apr 2026 10:12:48 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=5804&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Droplets 2.4.1 — PHP 8.x Fix]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=5816&amp;action=new</link>
			<description><![CDATA[<p><strong>Droplets 2.4.1 — PHP 8.x Fix</strong><br /><em>Stand: 27. März 2026</em></p><br /><p>Hallo Florian, hallo Community,</p><p>kleiner aber wichtiger Fix für Droplets unter PHP 8.x.</p><br /><p><strong>Problem</strong></p><p>Wenn mehrere Abschnitte auf einer Seite vorhanden sind erscheint im Errorlog:</p><div class="codebox"><pre><code class="prettyprint">[Warning] /modules/droplets/droplets.php:[73]
from /modules/droplets/opf_filter_droplets.php:[68]
evalDroplets &quot;Undefined array key 1&quot;</code></pre></div><p>PHP 8.x ist strenger bei undefined array keys — in PHP 7.x wurde das still ignoriert.</p><br /><p><strong>Ursache</strong></p><p>In droplets.php Zeile 73 wird list() mit explode() verwendet.<br />Wenn kein &#039;=&#039; im Argument vorhanden ist liefert explode() nur ein Element<br />und list() greift auf den nicht vorhandenen Index [1] zu.</p><br /><p><strong>Fix</strong></p><div class="codebox"><pre><code class="prettyprint">// VORHER
list( $variable, $value ) = explode(&#039;=&#039;, $argument, 2);

// NACHHER
$parts    = explode(&#039;=&#039;, $argument, 2);
$variable = $parts[0] ?? &#039;&#039;;
$value    = $parts[1] ?? &#039;&#039;;</code></pre></div><br /><p><strong>Umgebung</strong></p><ul><li><p>Droplets Version: 2.4.1</p></li><li><p>WBCE: 1.6.5</p></li><li><p>PHP: 8.5.2</p></li><li><p>Getestet: Mehrere Abschnitte auf einer Seite — kein Fehler im Errorlog</p></li></ul>]]></description>
			<author><![CDATA[dummy@example.com (Slugger)]]></author>
			<pubDate>Fri, 27 Mar 2026 18:25:15 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=5816&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[TinyMCE 6 Implementierung]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=5314&amp;action=new</link>
			<description><![CDATA[<p>Ja, das klingt gut.<br />Für die WBCE 2.x Reihe kommen noch ein paar spezielle Features. </p><p>Für die Wbce Edition von TinyMCE sind die größten Hürden:<br />- Seiten/wblink Einbindung<br />- Droplets -||-<br />- elFinder -||-</p><p>Die Möglichkeit mehrerer Config-Profile kann von Anfang an dabei sein. Vielleicht nur nicht ganz so elegant.</p><p>Ich habe gestern lokal schon etwas mit dem Tiny rumgespielt. Es ist wirklich so ein cooles Tool.</p><p>Ach so, bzgl. des Code-Views: da gibt es von TinyMCE einen<a href="https://www.tiny.cloud/docs/enterprise/advcode/" target="_blank" rel="nofollow"> Advanced Code Editor Plugin</a>.<br />Ich hoffe aber, dass wir das auch anders hinkriegen, Vielleicht kombiniert mit dem Ace. Aber hier will ich mich nicht zu weit aus dem Fenster lehnen, da ich es mir erst richtig anschauen und das Internet durchstöbern muss (ob es OpenSource Implementierungsansätze gibt).</p><p>Gruß, <br />Christian</p>]]></description>
			<author><![CDATA[dummy@example.com (stefanek)]]></author>
			<pubDate>Mon, 19 Feb 2024 09:47:16 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=5314&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Droplets - getNewsItems]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=5056&amp;action=new</link>
			<description><![CDATA[<p>Entweder das oder das Droplet löschen, wenn es sowieso nicht gebraucht wird.</p>]]></description>
			<author><![CDATA[dummy@example.com (florian)]]></author>
			<pubDate>Wed, 15 Mar 2023 08:29:25 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=5056&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Feedback WBCE 1.6.0]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=5050&amp;action=new</link>
			<description><![CDATA[<p>WBCE: 1.5.4 auf 1.6.0 <br />PHP 8.1.16 </p><p>Null Probleme, alles sehr sehr gut.</p>]]></description>
			<author><![CDATA[dummy@example.com (byteworker)]]></author>
			<pubDate>Mon, 13 Mar 2023 15:59:01 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=5050&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Droplets Upgrade  v. 2.3.2]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=5006&amp;action=new</link>
			<description><![CDATA[<p>Ehrlich gesagt denke ich, dass es keine so gute Idee ist, bzw. der Aufwand würde den Nutzen nicht rechtfertigen.<br />User die nicht versiert sind würden sich zudem auch schwer damit tun, die Parameter auszuwählen.</p><p>Das ist meine persönliche Meinung als erfahrener Nutzer. Als Programmierer würde ich sagen: klar, geht. Gib mir genug Zeit und Mittel und ich übernehme das.</p><p>Wenn aber die Droplet Nutzung den Nutzer überfordert dann muss meistens sowieso tiefer angesetzt werden, bzw. drum herum gebaut werden, dass der Nutzer den Content gut managen kann.</p><p>Gruß, <br />Christian</p>]]></description>
			<author><![CDATA[dummy@example.com (stefanek)]]></author>
			<pubDate>Mon, 06 Feb 2023 17:53:06 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=5006&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[WBCE ist das schnellste bekannte CMS - quick hack für pures html]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=4747&amp;action=new</link>
			<description><![CDATA[<p>Eigener Thread fürs pageFreezer-Tool:<br /><a href="https://forum.wbce.org/viewtopic.php?id=4952" target="_blank" rel="nofollow">https://forum.wbce.org/viewtopic.php?id=4952</a></p>]]></description>
			<author><![CDATA[dummy@example.com (florian)]]></author>
			<pubDate>Fri, 13 Jan 2023 11:49:05 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=4747&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Feedback-Update 1.5.4.]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=4903&amp;action=new</link>
			<description><![CDATA[<p>Auch das letzte Projekt ist jetzt Up to Date.</p><p>Obwohl im errorlog das eine oder andere erscheint.</p><p>Das wiederum wird in den anderen Foren publik.</p><p>Trotzdem ist es nach wie vor eine saubere Arbeit, wie einfach ein Update bei euch funktioniert.</p>]]></description>
			<author><![CDATA[dummy@example.com (Slugger)]]></author>
			<pubDate>Thu, 22 Dec 2022 22:38:42 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=4903&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Neue Version 1.5.3 geplant?]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=4751&amp;action=new</link>
			<description><![CDATA[<p>Einen konkreten Termin kann ich nicht sagen. Die auf Github verfügbare Entwicklungsversion im Master läuft schon ganz gut, muss aber auch mit niedrigeren PHP-Versionen noch getestet werden. <br />Ich habe angefangen, auch Module aus dem AOR zu aktualisieren, auch da ist aber noch viel zu tun.</p>]]></description>
			<author><![CDATA[dummy@example.com (florian)]]></author>
			<pubDate>Sun, 10 Jul 2022 13:33:37 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=4751&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Termin für neue Version 1.4.6 absehbar?]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=4246&amp;action=new</link>
			<description><![CDATA[<p>Es wird eine 1.5.0 geben, wann genau, steht noch nicht fest.</p><p>Den aktuellen Entwicklungsstand kannst Du immer auf <a href="https://github.com/WBCE/WBCE_CMS" target="_blank" rel="nofollow">Github</a> verfolgen.</p>]]></description>
			<author><![CDATA[dummy@example.com (florian)]]></author>
			<pubDate>Mon, 29 Mar 2021 08:13:04 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=4246&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Is it WBCE 1.4.2 or 1.4.3]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=3707&amp;action=new</link>
			<description><![CDATA[<p>You are right, it&#039;s actually 1.4.3. There was some mess about versioning in the latest releases. We will clean this up in the upcoming version.</p>]]></description>
			<author><![CDATA[dummy@example.com (florian)]]></author>
			<pubDate>Thu, 11 Jun 2020 19:08:00 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=3707&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Backup [bzw. Admintoolberechtigungen auf Gruppenebene]]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=3377&amp;action=new</link>
			<description><![CDATA[<p>Danke für die Antwort, dann weiß ich erstmal, dass es nicht geht.<br />LG<br />Bodo</p>]]></description>
			<author><![CDATA[dummy@example.com (bodo)]]></author>
			<pubDate>Thu, 23 Jan 2020 08:40:06 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=3377&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Frontend-Registrierung in 1.3.2]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=2239&amp;action=new</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>ob in der Zeile &quot;Frontend Template für signup.php&quot; etwas eingetragen werden muss.</p></div></blockquote></div><p>Nein. Alle Template-Felder bei den Account- und Registrierungseinstellungen sind optional. Du kannst da den Namen (das Template-Verzeichnis) eines Templates einsetzen, das anstelle des Standard-Templates für die Darstellung der jeweiligen systemgenerierten Seiten verwendet werden soll. D.h. wenn Du normalerweise WBCEZon verwendest, die Login-, Neuregistrierungs- und Profil-Seite aber mit WBCEtik angezeigt werden sollen, trägst Du in den drei Feldern jeweils &quot;wbcetik&quot; (ohne &quot;&quot;) ein. Du kannst auch jede der Seiten mit einem anderen Template anzeigen.</p><p>Den Fall der Frontend-Registrierunhg hatte ich bei der Erstellung des WBCEZon-Templates schlichtweg vergessen. Füge nach Zeile 59</p><div class="codebox"><pre><code class="prettyprint">$loginlink = &#039;&lt;a href=&quot;&#039;.LOGIN_URL.&#039;&quot;&gt;&lt;i class=&quot;icon-sli-login&quot;  aria-hidden=&quot;true&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;;</code></pre></div><p>folgenden Code ein:</p><div class="codebox"><pre><code class="prettyprint">if (FRONTEND_SIGNUP) {
  $loginlink .= &#039; &lt;a href=&quot;&#039;.SIGNUP_URL.&#039;&quot;&gt;&lt;i class=&quot;icon-sli-user-follow&quot;  aria-hidden=&quot;true&quot;&gt;&lt;/i&gt;&lt;/a&gt;&#039;;
}</code></pre></div><p>Dann gibt es neben dem Login-Link im Footer auch ein Registrier-Icon.<br />Oder verwende das Droplet [[Loginbox]], da ist ein Registrierung-Link drin, wenn die Frontendregistrierung aktiv ist.</p>]]></description>
			<author><![CDATA[dummy@example.com (florian)]]></author>
			<pubDate>Sun, 19 Jan 2020 18:41:56 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=2239&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[[Erledigt] Lizenz des Moduls wird nicht angezeigt]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=2956&amp;action=new</link>
			<description><![CDATA[<p>Ist in 1.4.1 umgesetzt.</p>]]></description>
			<author><![CDATA[dummy@example.com (florian)]]></author>
			<pubDate>Thu, 19 Dec 2019 08:27:11 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=2956&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[[Erledigt] Button [Speichern & Zurück]]]></title>
			<link>https://forum.wbce.org/viewtopic.php?id=3160&amp;action=new</link>
			<description><![CDATA[<p>Ist in 1.4.1 umgesetzt.</p>]]></description>
			<author><![CDATA[dummy@example.com (florian)]]></author>
			<pubDate>Thu, 19 Dec 2019 08:26:36 +0000</pubDate>
			<guid>https://forum.wbce.org/viewtopic.php?id=3160&amp;action=new</guid>
		</item>
	</channel>
</rss>
