<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[net-board.net Archiv - Erweiterungen, Designs und Anleitungen]]></title>
		<link>https://net-board.net/</link>
		<description><![CDATA[net-board.net Archiv - https://net-board.net]]></description>
		<pubDate>Mon, 20 Apr 2026 02:51:50 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[(SMF/Coppermine) Letzte Bilder im Forum]]></title>
			<link>https://net-board.net/showthread.php?tid=5806</link>
			<pubDate>Tue, 22 Apr 2008 12:46:18 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=1">pattex</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5806</guid>
			<description><![CDATA[Diese Erweiterung zeigt die letzten Bilder aus der Coppermine-Gallerie unter "<span style="font-style: italic;" class="mycode_i">My Community - Info Center</span>" in eurem Simple Machines Forum (getestet auf 1.1.4) an.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Bitte beachten:</span> Gallerie und Forum müssen mindestens in der gleichen Datenbank installiert sein (Datenbank-Username und Passwort gleich)<br />
<br />
Ihr solltet unbedingt die folgenden Dateien sichern:<br />
./Sources/BoardIndex.php<br />
./Themes/*STYLENAME*/languages/index.english.php<br />
./Themes/*STYLENAME*/BoardIndex.template.php<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Der Einbau:</span><br />
____________________________________________________<br />
<span style="text-decoration: underline;" class="mycode_u"><span style="font-style: italic;" class="mycode_i">Dateien</span></span><br />
<span style="font-weight: bold;" class="mycode_b">./Sources/BoardIndex.php</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">über:</span><br />
// Load the most recent post?<br />
<br />
<span style="font-weight: bold;" class="mycode_b">einfügen:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Coppermine Last Pictures(by net-board.net)<br />
/* SETTINGS */<br />
&#36;path="/copperminesmf/cpg1.4.18/cpg1418/"; // URL zu deiner Coppermine Gallerie<br />
&#36;pr="cpgprefix_"; // Prefix deiner Coppermine Gallerie (SQL)<br />
&#36;n="6"; // Anzahl der angezeigten Bilder<br />
&#36;db_n="coppermine_name"; // Datenbankname<br />
<br />
mysql_select_db(&#36;db_n)or die(mysql_error());<br />
<br />
&#36;request = db_query("SELECT * FROM ".&#36;pr."pictures ORDER BY pid DESC LIMIT ".&#36;n."", __FILE__, __LINE__);<br />
&#36;position=0;<br />
&#36;context['cp_bridge']=0;&#36;context['cp_bridge']="&lt;tr&gt;&lt;td colspan=2 class='windowbg'&gt;&lt;table width=100% cellspacing=0 cellpadding=0&gt;&lt;tr&gt;";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;while (&#36;row = mysql_fetch_assoc(&#36;request)){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;album='0';<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;context['cp_bridge'].="<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td valign='top'&gt;&lt;center&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table cellspacing=0 cellpadding=0&gt;&lt;tr&gt;&lt;td width='130px' align=center&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href='".&#36;path."displayimage.php?album=lastup&amp;cat=".&#36;album."&amp;pos=".&#36;position."' alt='".&#36;row['title']."' title='".&#36;row['title']."' target='_blank'&gt;&lt;img src='".&#36;path."albums/".&#36;row['filepath']."thumb_".&#36;row['filename']."' style='border:none;'&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(!&#36;row['title'])&#36;context['cp_bridge'].="-";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else &#36;context['cp_bridge'].=wordwrap(utf8_decode(&#36;row['title']),23, "&lt;br&gt;", 1);<br />
&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;&#36;context['cp_bridge'].="&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;position++;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;context['cp_bridge'].="&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/tr&gt;";</code></div></div><br />
<br />
<span style="text-decoration: underline;" class="mycode_u"><span style="font-style: italic;" class="mycode_i">Template</span></span><br />
<span style="font-weight: bold;" class="mycode_b">./Themes/*STYLENAME*/BoardIndex.template.php</span><br />
<span style="font-style: italic;" class="mycode_i">(muss in jedem Style geändert werden)</span><br />
<span style="font-weight: bold;" class="mycode_b"></span><br />
<span style="font-weight: bold;" class="mycode_b">suche:</span><br />
// Show YaBB SP1 style information...<br />
<br />
<span style="font-weight: bold;" class="mycode_b">darüber einfügen:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;// Show last Coppermine pictures<br />
<br />
echo'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&lt;td class="titlebg" colspan="2"&gt;',&#36;txt['last_pictures_copp'] ,'&lt;/td&gt;<br />
&lt;/tr&gt;';<br />
<br />
echo "".&#36;context['cp_bridge']."";</code></div></div><br />
<br />
<span style="text-decoration: underline;" class="mycode_u"><span style="font-style: italic;" class="mycode_i">Sprachvariable anpassen:</span></span><br />
./Themes/*STYLENAME*/languages/index.english.php<br />
<span style="font-style: italic;" class="mycode_i">(oder andere Sprache. Nur index.*.php muss stimmen)</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">am Ende der Datei über ?&gt; einbauen:</span><br />
&#36;txt['last_pictures_copp'] = 'Our latest pictures';<br />
<br />
<br />
<span style="font-size: 16pt;" class="mycode_size">Nicht vergessen!</span> die Scriptstelle in der BoardIndex.php müsst ihr anpassen!<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/* SETTINGS */<br />
&#36;path="/copperminesmf/cpg1.4.18/cpg1418/"; // URL zu deiner Coppermine Gallerie<br />
&#36;pr="cpgprefix_"; // Prefix deiner Coppermine Gallerie (SQL)<br />
&#36;n="6"; // Anzahl der angezeigten Bilder<br />
&#36;db_n="coppermine_name"; // Datenbankname</code></div></div>Die habt ihr eben eingebaut. Und zwar gehört unter &#36;path der Pfad zu deiner Gallerie vom Hauptverzeichnis ausgehend. Wenn du sie über die URL meinedomain.de/gallerie aufrufst gehört da rein "/gallerie/".<br />
<br />
&#36;pr ist der Prefix der Gallerie. Der in der Datenbank. <br />
<br />
&#36;n sagt nur wie viele Bilder angezeigt werden sollen.<br />
<br />
&#36;db_n muss den Namen der SQL-Datenbank enthalten, in der eure Gallerie installiert ist. <br />
<br />
Das wärs schon wenn ich nichts vergessen habe.<br />
Viel Erfolg beim Einbau!<br />
<br />
Fragen und Probleme könnt ihr hier posten. <img src="https://net-board.net/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
Gruß pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1638" target="_blank" title="">cpg.jpg</a> (Größe: 31,92 KB / Downloads: 570)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Diese Erweiterung zeigt die letzten Bilder aus der Coppermine-Gallerie unter "<span style="font-style: italic;" class="mycode_i">My Community - Info Center</span>" in eurem Simple Machines Forum (getestet auf 1.1.4) an.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Bitte beachten:</span> Gallerie und Forum müssen mindestens in der gleichen Datenbank installiert sein (Datenbank-Username und Passwort gleich)<br />
<br />
Ihr solltet unbedingt die folgenden Dateien sichern:<br />
./Sources/BoardIndex.php<br />
./Themes/*STYLENAME*/languages/index.english.php<br />
./Themes/*STYLENAME*/BoardIndex.template.php<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Der Einbau:</span><br />
____________________________________________________<br />
<span style="text-decoration: underline;" class="mycode_u"><span style="font-style: italic;" class="mycode_i">Dateien</span></span><br />
<span style="font-weight: bold;" class="mycode_b">./Sources/BoardIndex.php</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">über:</span><br />
// Load the most recent post?<br />
<br />
<span style="font-weight: bold;" class="mycode_b">einfügen:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Coppermine Last Pictures(by net-board.net)<br />
/* SETTINGS */<br />
&#36;path="/copperminesmf/cpg1.4.18/cpg1418/"; // URL zu deiner Coppermine Gallerie<br />
&#36;pr="cpgprefix_"; // Prefix deiner Coppermine Gallerie (SQL)<br />
&#36;n="6"; // Anzahl der angezeigten Bilder<br />
&#36;db_n="coppermine_name"; // Datenbankname<br />
<br />
mysql_select_db(&#36;db_n)or die(mysql_error());<br />
<br />
&#36;request = db_query("SELECT * FROM ".&#36;pr."pictures ORDER BY pid DESC LIMIT ".&#36;n."", __FILE__, __LINE__);<br />
&#36;position=0;<br />
&#36;context['cp_bridge']=0;&#36;context['cp_bridge']="&lt;tr&gt;&lt;td colspan=2 class='windowbg'&gt;&lt;table width=100% cellspacing=0 cellpadding=0&gt;&lt;tr&gt;";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;while (&#36;row = mysql_fetch_assoc(&#36;request)){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;album='0';<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;context['cp_bridge'].="<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td valign='top'&gt;&lt;center&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table cellspacing=0 cellpadding=0&gt;&lt;tr&gt;&lt;td width='130px' align=center&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href='".&#36;path."displayimage.php?album=lastup&amp;cat=".&#36;album."&amp;pos=".&#36;position."' alt='".&#36;row['title']."' title='".&#36;row['title']."' target='_blank'&gt;&lt;img src='".&#36;path."albums/".&#36;row['filepath']."thumb_".&#36;row['filename']."' style='border:none;'&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(!&#36;row['title'])&#36;context['cp_bridge'].="-";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else &#36;context['cp_bridge'].=wordwrap(utf8_decode(&#36;row['title']),23, "&lt;br&gt;", 1);<br />
&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;&#36;context['cp_bridge'].="&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#36;position++;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;context['cp_bridge'].="&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/tr&gt;";</code></div></div><br />
<br />
<span style="text-decoration: underline;" class="mycode_u"><span style="font-style: italic;" class="mycode_i">Template</span></span><br />
<span style="font-weight: bold;" class="mycode_b">./Themes/*STYLENAME*/BoardIndex.template.php</span><br />
<span style="font-style: italic;" class="mycode_i">(muss in jedem Style geändert werden)</span><br />
<span style="font-weight: bold;" class="mycode_b"></span><br />
<span style="font-weight: bold;" class="mycode_b">suche:</span><br />
// Show YaBB SP1 style information...<br />
<br />
<span style="font-weight: bold;" class="mycode_b">darüber einfügen:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;// Show last Coppermine pictures<br />
<br />
echo'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&lt;td class="titlebg" colspan="2"&gt;',&#36;txt['last_pictures_copp'] ,'&lt;/td&gt;<br />
&lt;/tr&gt;';<br />
<br />
echo "".&#36;context['cp_bridge']."";</code></div></div><br />
<br />
<span style="text-decoration: underline;" class="mycode_u"><span style="font-style: italic;" class="mycode_i">Sprachvariable anpassen:</span></span><br />
./Themes/*STYLENAME*/languages/index.english.php<br />
<span style="font-style: italic;" class="mycode_i">(oder andere Sprache. Nur index.*.php muss stimmen)</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">am Ende der Datei über ?&gt; einbauen:</span><br />
&#36;txt['last_pictures_copp'] = 'Our latest pictures';<br />
<br />
<br />
<span style="font-size: 16pt;" class="mycode_size">Nicht vergessen!</span> die Scriptstelle in der BoardIndex.php müsst ihr anpassen!<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/* SETTINGS */<br />
&#36;path="/copperminesmf/cpg1.4.18/cpg1418/"; // URL zu deiner Coppermine Gallerie<br />
&#36;pr="cpgprefix_"; // Prefix deiner Coppermine Gallerie (SQL)<br />
&#36;n="6"; // Anzahl der angezeigten Bilder<br />
&#36;db_n="coppermine_name"; // Datenbankname</code></div></div>Die habt ihr eben eingebaut. Und zwar gehört unter &#36;path der Pfad zu deiner Gallerie vom Hauptverzeichnis ausgehend. Wenn du sie über die URL meinedomain.de/gallerie aufrufst gehört da rein "/gallerie/".<br />
<br />
&#36;pr ist der Prefix der Gallerie. Der in der Datenbank. <br />
<br />
&#36;n sagt nur wie viele Bilder angezeigt werden sollen.<br />
<br />
&#36;db_n muss den Namen der SQL-Datenbank enthalten, in der eure Gallerie installiert ist. <br />
<br />
Das wärs schon wenn ich nichts vergessen habe.<br />
Viel Erfolg beim Einbau!<br />
<br />
Fragen und Probleme könnt ihr hier posten. <img src="https://net-board.net/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
Gruß pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1638" target="_blank" title="">cpg.jpg</a> (Größe: 31,92 KB / Downloads: 570)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Private Nachrichten an alle Nutzer (wBB Lite 1.0)]]></title>
			<link>https://net-board.net/showthread.php?tid=5802</link>
			<pubDate>Wed, 16 Apr 2008 21:38:39 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=1">pattex</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5802</guid>
			<description><![CDATA[Hallo Netboardler,<br />
<br />
ich weiß nicht, ob dieser Hack bereits umgesetzt wurde. Macht auch nichts, es handelt sich lediglich um eine kleine Änderung an 3 Dateien in eurem <span style="font-weight: bold;" class="mycode_b">wBB Lite 1.0</span>.<br />
<br />
Was macht dieser Hack? Er erweitert die Funkion "eMail an alle Benutzer" um die Möglichkeit, PN's an alle Benutzer zu schreiben (oder beides).<br />
Es ist auch möglich an ausgewählte User PN's zu schreiben. <br />
<br />
{username} wird wie gewohnt ersetzt und die Profileinstellung "Dürfen wir Sie informieren?" wird berücksichtigt. <br />
<br />
Es funktioniert alles genau wie die E-Mail senden Funktion nur eben über Private Nachrichten.<br />
<br />
<br />
Screenshots und Anleitung zum Einbau im Anhang.<br />
Bei Interesse kann ich diesen Hack auch für wBB 1.0 anbieten. <br />
<br />
Viel Erfolg,<br />
Gruß pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1635" target="_blank" title="">pn_lite_1.0.txt</a> (Größe: 2,89 KB / Downloads: 292)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1636" target="_blank" title="">pn.jpg</a> (Größe: 32,24 KB / Downloads: 448)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hallo Netboardler,<br />
<br />
ich weiß nicht, ob dieser Hack bereits umgesetzt wurde. Macht auch nichts, es handelt sich lediglich um eine kleine Änderung an 3 Dateien in eurem <span style="font-weight: bold;" class="mycode_b">wBB Lite 1.0</span>.<br />
<br />
Was macht dieser Hack? Er erweitert die Funkion "eMail an alle Benutzer" um die Möglichkeit, PN's an alle Benutzer zu schreiben (oder beides).<br />
Es ist auch möglich an ausgewählte User PN's zu schreiben. <br />
<br />
{username} wird wie gewohnt ersetzt und die Profileinstellung "Dürfen wir Sie informieren?" wird berücksichtigt. <br />
<br />
Es funktioniert alles genau wie die E-Mail senden Funktion nur eben über Private Nachrichten.<br />
<br />
<br />
Screenshots und Anleitung zum Einbau im Anhang.<br />
Bei Interesse kann ich diesen Hack auch für wBB 1.0 anbieten. <br />
<br />
Viel Erfolg,<br />
Gruß pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1635" target="_blank" title="">pn_lite_1.0.txt</a> (Größe: 2,89 KB / Downloads: 292)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1636" target="_blank" title="">pn.jpg</a> (Größe: 32,24 KB / Downloads: 448)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Gefunden: Coppermine WBBLite integration]]></title>
			<link>https://net-board.net/showthread.php?tid=5744</link>
			<pubDate>Mon, 21 Jan 2008 21:18:52 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=0">chaosdiablo</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5744</guid>
			<description><![CDATA[<a href="http://www.hopfenschlodel.de/thread.php?threadid=39031&amp;sid=" target="_blank" rel="noopener" class="mycode_url">http://www.hopfenschlodel.de/thread.php?...39031&amp;sid=</a><br />
da ist etwas was wir lange suchten...]]></description>
			<content:encoded><![CDATA[<a href="http://www.hopfenschlodel.de/thread.php?threadid=39031&amp;sid=" target="_blank" rel="noopener" class="mycode_url">http://www.hopfenschlodel.de/thread.php?...39031&amp;sid=</a><br />
da ist etwas was wir lange suchten...]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Avatare freischalten für wBB1]]></title>
			<link>https://net-board.net/showthread.php?tid=5658</link>
			<pubDate>Sun, 19 Aug 2007 01:07:00 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=1">pattex</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5658</guid>
			<description><![CDATA[Hallo,<br />
<br />
da wir noch immer ein Mitglied haben welches sich standhaft weigert eine aktuelle Boardversion zu nutzen gibt es nun diese Erweiterung wieder für das wBB1.<br />
Sie bewirkt, dass jeder Avatar vorher von einem Admin freigeschaltet werden muss.<br />
<br />
1.) Führe diese MySQL Befehl aus:<br />
ALTER TABLE `bbX_avatars` ADD `allowed` INT( 11 ) NOT NULL ;<br />
<br />
Wobei du das X durch deine Installtionsnummer ersetzen musst!<br />
<br />
2.) Öffne die Datei admin/Upload.class.php und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36;db_zugriff-&gt;query("INSERT INTO bb".&#36;n."_avatars VALUES ('','".&#36;this-&gt;file_name."','".&#36;this-&gt;file_extension."','&#36;groupid','&#36;posts','&#36;setuserid')");<br />
&#36;this-&gt;insertid = &#36;db_zugriff-&gt;insert_id();</code></div></div><br />
füge hinter &#36;setuserid' ein:<br />
,'0'<br />
<br />
3.) Öffne die thread.php und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36;post_result = &#36;db_zugriff-&gt;query("<br />
&nbsp;&nbsp;&nbsp;&nbsp;SELECT bb".&#36;n."_posts.*, bb".&#36;n."_avatars.extension as avatarextension, bb".&#36;n."_user_table.*, bb".&#36;n."_useronline.zeit FROM bb".&#36;n."_posts<br />
&nbsp;&nbsp;&nbsp;&nbsp;LEFT JOIN bb".&#36;n."_user_table ON (bb".&#36;n."_user_table.userid = bb".&#36;n."_posts.userid)<br />
&nbsp;&nbsp;&nbsp;&nbsp;LEFT JOIN bb".&#36;n."_avatars ON (bb".&#36;n."_avatars.id = bb".&#36;n."_user_table.avatarid AND bb".&#36;n."_avatars.allowed=1)<br />
&nbsp;&nbsp;&nbsp;&nbsp;LEFT JOIN bb".&#36;n."_useronline ON (bb".&#36;n."_useronline.userid = bb".&#36;n."_posts.userid AND bb".&#36;n."_useronline.userid&gt;0)<br />
&nbsp;&nbsp;&nbsp;&nbsp;WHERE bb".&#36;n."_posts.postid IN (0&#36;postids) ORDER by bb".&#36;n."_posts.posttime ".ifelse(&#36;postorder,"DESC","ASC"));</code></div></div>ersetze diese Zeile:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>LEFT JOIN bb".&#36;n."_avatars ON (bb".&#36;n."_avatars.id = bb".&#36;n."_user_table.avatarid)</code></div></div>durch:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>LEFT JOIN bb".&#36;n."_avatars ON (bb".&#36;n."_avatars.id = bb".&#36;n."_user_table.avatarid AND (bb".&#36;n."_avatars.allowed=1 OR bb".&#36;n."_avatars.userid=0))</code></div></div>suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(&#36;posts[avatarid] &amp;&amp; !&#36;hide_userpic &amp;&amp; &#36;avatars) &#36;user_pic = "&lt;br&gt;&lt;img src=&#92;"images/avatars/avatar-".&#36;posts[avatarid].".".&#36;posts[avatarextension]."&#92;" border=0&gt;";</code></div></div>ersetze es durch:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(&#36;posts[avatarid] &amp;&amp; &#36;posts[avatarextension] &amp;&amp; !&#36;hide_userpic &amp;&amp; &#36;avatars) &#36;user_pic = "&lt;br&gt;&lt;img src=&#92;"images/avatars/avatar-".&#36;posts[avatarid].".".&#36;posts[avatarextension]."&#92;" border=0&gt;";</code></div></div><br />
4.) Öffne die members.php und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36;user_info = &#36;db_zugriff-&gt;query_first("SELECT users.*, avatars.extension FROM bb".&#36;n."_user_table users LEFT JOIN bb".&#36;n."_avatars avatars ON (avatars.id=users.avatarid) WHERE users.userid='&#36;userid'");</code></div></div>ersetze es durch:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36;user_info = &#36;db_zugriff-&gt;query_first("SELECT users.*, avatars.extension FROM bb".&#36;n."_user_table users LEFT JOIN bb".&#36;n."_avatars avatars ON (avatars.id=users.avatarid AND (avatars.allowed=1 OR avatars.userid=0)) WHERE users.userid='&#36;userid'");</code></div></div>suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(&#36;user_info[avatarid] &amp;&amp; !&#36;hide_userpic &amp;&amp; &#36;avatars) &#36;userpic = "&lt;br&gt;&lt;img src=&#92;"images/avatars/avatar-&#36;user_info[avatarid].&#36;user_info[extension]&#92;" border=0&gt;";</code></div></div>ersetze es durch:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(&#36;user_info[avatarid] &amp;&amp; &#36;user_info[extension] &amp;&amp; !&#36;hide_userpic &amp;&amp; &#36;avatars) &#36;userpic = "&lt;br&gt;&lt;img src=&#92;"images/avatars/avatar-&#36;user_info[avatarid].&#36;user_info[extension]&#92;" border=0&gt;";</code></div></div><br />
5.) Öffne die Datei admin/templates/menue.htm und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;p style="margin-top: 0; margin-bottom: 0"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;font size=1 face="Tahoma"&gt;&lt;a href="admin.php?action=avatar_user_del&#36;session" target="main"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;font color="#FFFFFF"&gt;» User-Avatars löschen&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;</code></div></div>füge darunter ein:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;p style="margin-top: 0; margin-bottom: 0"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;font size=1 face="Tahoma"&gt;&lt;a href="admin.php?action=activate_avatar" target="main"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;font color="#FFFFFF"&gt;» Avatare freischalten&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;</code></div></div><br />
6.) Öffne admin/admin.php und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(&#36;action == "smilies_del") {<br />
&nbsp;&nbsp;&nbsp;&nbsp;if(&#36;send == "send" &amp;&amp; count(&#36;smilieid)) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for(&#36;i = 0; &#36;i &lt; count(&#36;smilieid); &#36;i++) &#36;db_zugriff-&gt;query("DELETE FROM bb".&#36;n."_smilies WHERE id = '&#36;smilieid[&#36;i]'");<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;result = &#36;db_zugriff-&gt;query("SELECT * FROM bb".&#36;n."_smilies ORDER BY id ASC");<br />
&nbsp;&nbsp;&nbsp;&nbsp;while(&#36;row = &#36;db_zugriff-&gt;fetch_array(&#36;result)) eval ("&#92;&#36;smilies_delbit .= &#92;"".gettemplate("smilies_delbit")."&#92;";");<br />
&nbsp;&nbsp;&nbsp;&nbsp;eval("dooutput(&#92;"".gettemplate("smilies_del")."&#92;");");<br />
}</code></div></div>füge darunter ein:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(&#36;action == "activate_avatar") {<br />
&nbsp;&nbsp;&nbsp;&nbsp;if(&#36;send == "send" &amp;&amp; count(&#36;avatarid)) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for(&#36;i = 0; &#36;i &lt; count(&#36;avatarid); &#36;i++) &#36;db_zugriff-&gt;query("UPDATE bb".&#36;n."_avatars SET allowed=1 WHERE id = '&#36;avatarid[&#36;i]'");<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;result = &#36;db_zugriff-&gt;query("SELECT * FROM bb".&#36;n."_avatars avatars,bb".&#36;n."_user_table users WHERE avatars.allowed=0 AND users.userid=avatars.userid ORDER BY id");<br />
&nbsp;&nbsp;&nbsp;&nbsp;while(&#36;row = &#36;db_zugriff-&gt;fetch_array(&#36;result)) eval ("&#92;&#36;avatars_bit .= &#92;"".gettemplate("activate_avatars_bit")."&#92;";");<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;eval("dooutput(&#92;"".gettemplate("activate_avatar")."&#92;");");<br />
}</code></div></div><br />
7.) Öffne die templates/profile_avatars.htm und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td colspan=2&gt;&lt;FONT face="{font}" size=2&nbsp;&nbsp;color="{fontcolorsecond}"&gt;&lt;b&gt;Avatare&lt;/b&gt;</code></div></div>füge dahinter ein:<br />
&#36;hinweis<br />
<br />
8.) Öffne die profile.php und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if (&#36;upload-&gt;doUpload()) &#36;db_zugriff-&gt;query("UPDATE bb".&#36;n."_user_table set avatarid = '&#36;insertid' WHERE userid = '&#36;user_id'");<br />
else eval ("&#92;&#36;error = &#92;"".gettemplate("error3")."&#92;";");</code></div></div>ersetze es durch:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if (&#36;upload-&gt;doUpload()){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#36;db_zugriff-&gt;query("UPDATE bb".&#36;n."_user_table set avatarid = '&#36;insertid' WHERE userid = '&#36;user_id'");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#36;hinweis="&lt;br&gt;Bevor dein Avatar sichtbar ist, wird er von einem Admin geprüft. Bitte habe dafür Verständnis.";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#36;db_zugriff-&gt;query("INSERT INTO bb".&#36;n."_pms(senderid,recipientid,sendtime,subject,message,icon,disable_smilies) VALUES('1','1','".time()."','Neuer Avatar bereit zum freischalten','Ein neuer Avatar wurde gewählt und muss nun freigeschaltet werden','./images/icons/ausrufezeichen.gif','0')");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}else{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; eval ("&#92;&#36;error = &#92;"".gettemplate("error3")."&#92;";");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</code></div></div><br />
Abschließend musst du noch die beiden Templates aus dem .zip Archiv in den Ordner admin/templates laden!<br />
<br />
Viel Erfolg mit der Erweiterung!<br />
<br />
Gruß pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1529" target="_blank" title="">avatar_freischalten_tpl.zip</a> (Größe: 929 Bytes / Downloads: 293)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hallo,<br />
<br />
da wir noch immer ein Mitglied haben welches sich standhaft weigert eine aktuelle Boardversion zu nutzen gibt es nun diese Erweiterung wieder für das wBB1.<br />
Sie bewirkt, dass jeder Avatar vorher von einem Admin freigeschaltet werden muss.<br />
<br />
1.) Führe diese MySQL Befehl aus:<br />
ALTER TABLE `bbX_avatars` ADD `allowed` INT( 11 ) NOT NULL ;<br />
<br />
Wobei du das X durch deine Installtionsnummer ersetzen musst!<br />
<br />
2.) Öffne die Datei admin/Upload.class.php und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36;db_zugriff-&gt;query("INSERT INTO bb".&#36;n."_avatars VALUES ('','".&#36;this-&gt;file_name."','".&#36;this-&gt;file_extension."','&#36;groupid','&#36;posts','&#36;setuserid')");<br />
&#36;this-&gt;insertid = &#36;db_zugriff-&gt;insert_id();</code></div></div><br />
füge hinter &#36;setuserid' ein:<br />
,'0'<br />
<br />
3.) Öffne die thread.php und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36;post_result = &#36;db_zugriff-&gt;query("<br />
&nbsp;&nbsp;&nbsp;&nbsp;SELECT bb".&#36;n."_posts.*, bb".&#36;n."_avatars.extension as avatarextension, bb".&#36;n."_user_table.*, bb".&#36;n."_useronline.zeit FROM bb".&#36;n."_posts<br />
&nbsp;&nbsp;&nbsp;&nbsp;LEFT JOIN bb".&#36;n."_user_table ON (bb".&#36;n."_user_table.userid = bb".&#36;n."_posts.userid)<br />
&nbsp;&nbsp;&nbsp;&nbsp;LEFT JOIN bb".&#36;n."_avatars ON (bb".&#36;n."_avatars.id = bb".&#36;n."_user_table.avatarid AND bb".&#36;n."_avatars.allowed=1)<br />
&nbsp;&nbsp;&nbsp;&nbsp;LEFT JOIN bb".&#36;n."_useronline ON (bb".&#36;n."_useronline.userid = bb".&#36;n."_posts.userid AND bb".&#36;n."_useronline.userid&gt;0)<br />
&nbsp;&nbsp;&nbsp;&nbsp;WHERE bb".&#36;n."_posts.postid IN (0&#36;postids) ORDER by bb".&#36;n."_posts.posttime ".ifelse(&#36;postorder,"DESC","ASC"));</code></div></div>ersetze diese Zeile:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>LEFT JOIN bb".&#36;n."_avatars ON (bb".&#36;n."_avatars.id = bb".&#36;n."_user_table.avatarid)</code></div></div>durch:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>LEFT JOIN bb".&#36;n."_avatars ON (bb".&#36;n."_avatars.id = bb".&#36;n."_user_table.avatarid AND (bb".&#36;n."_avatars.allowed=1 OR bb".&#36;n."_avatars.userid=0))</code></div></div>suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(&#36;posts[avatarid] &amp;&amp; !&#36;hide_userpic &amp;&amp; &#36;avatars) &#36;user_pic = "&lt;br&gt;&lt;img src=&#92;"images/avatars/avatar-".&#36;posts[avatarid].".".&#36;posts[avatarextension]."&#92;" border=0&gt;";</code></div></div>ersetze es durch:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(&#36;posts[avatarid] &amp;&amp; &#36;posts[avatarextension] &amp;&amp; !&#36;hide_userpic &amp;&amp; &#36;avatars) &#36;user_pic = "&lt;br&gt;&lt;img src=&#92;"images/avatars/avatar-".&#36;posts[avatarid].".".&#36;posts[avatarextension]."&#92;" border=0&gt;";</code></div></div><br />
4.) Öffne die members.php und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36;user_info = &#36;db_zugriff-&gt;query_first("SELECT users.*, avatars.extension FROM bb".&#36;n."_user_table users LEFT JOIN bb".&#36;n."_avatars avatars ON (avatars.id=users.avatarid) WHERE users.userid='&#36;userid'");</code></div></div>ersetze es durch:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36;user_info = &#36;db_zugriff-&gt;query_first("SELECT users.*, avatars.extension FROM bb".&#36;n."_user_table users LEFT JOIN bb".&#36;n."_avatars avatars ON (avatars.id=users.avatarid AND (avatars.allowed=1 OR avatars.userid=0)) WHERE users.userid='&#36;userid'");</code></div></div>suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(&#36;user_info[avatarid] &amp;&amp; !&#36;hide_userpic &amp;&amp; &#36;avatars) &#36;userpic = "&lt;br&gt;&lt;img src=&#92;"images/avatars/avatar-&#36;user_info[avatarid].&#36;user_info[extension]&#92;" border=0&gt;";</code></div></div>ersetze es durch:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(&#36;user_info[avatarid] &amp;&amp; &#36;user_info[extension] &amp;&amp; !&#36;hide_userpic &amp;&amp; &#36;avatars) &#36;userpic = "&lt;br&gt;&lt;img src=&#92;"images/avatars/avatar-&#36;user_info[avatarid].&#36;user_info[extension]&#92;" border=0&gt;";</code></div></div><br />
5.) Öffne die Datei admin/templates/menue.htm und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;p style="margin-top: 0; margin-bottom: 0"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;font size=1 face="Tahoma"&gt;&lt;a href="admin.php?action=avatar_user_del&#36;session" target="main"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;font color="#FFFFFF"&gt;» User-Avatars löschen&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;</code></div></div>füge darunter ein:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;p style="margin-top: 0; margin-bottom: 0"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;font size=1 face="Tahoma"&gt;&lt;a href="admin.php?action=activate_avatar" target="main"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;font color="#FFFFFF"&gt;» Avatare freischalten&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;</code></div></div><br />
6.) Öffne admin/admin.php und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(&#36;action == "smilies_del") {<br />
&nbsp;&nbsp;&nbsp;&nbsp;if(&#36;send == "send" &amp;&amp; count(&#36;smilieid)) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for(&#36;i = 0; &#36;i &lt; count(&#36;smilieid); &#36;i++) &#36;db_zugriff-&gt;query("DELETE FROM bb".&#36;n."_smilies WHERE id = '&#36;smilieid[&#36;i]'");<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;result = &#36;db_zugriff-&gt;query("SELECT * FROM bb".&#36;n."_smilies ORDER BY id ASC");<br />
&nbsp;&nbsp;&nbsp;&nbsp;while(&#36;row = &#36;db_zugriff-&gt;fetch_array(&#36;result)) eval ("&#92;&#36;smilies_delbit .= &#92;"".gettemplate("smilies_delbit")."&#92;";");<br />
&nbsp;&nbsp;&nbsp;&nbsp;eval("dooutput(&#92;"".gettemplate("smilies_del")."&#92;");");<br />
}</code></div></div>füge darunter ein:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(&#36;action == "activate_avatar") {<br />
&nbsp;&nbsp;&nbsp;&nbsp;if(&#36;send == "send" &amp;&amp; count(&#36;avatarid)) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for(&#36;i = 0; &#36;i &lt; count(&#36;avatarid); &#36;i++) &#36;db_zugriff-&gt;query("UPDATE bb".&#36;n."_avatars SET allowed=1 WHERE id = '&#36;avatarid[&#36;i]'");<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;result = &#36;db_zugriff-&gt;query("SELECT * FROM bb".&#36;n."_avatars avatars,bb".&#36;n."_user_table users WHERE avatars.allowed=0 AND users.userid=avatars.userid ORDER BY id");<br />
&nbsp;&nbsp;&nbsp;&nbsp;while(&#36;row = &#36;db_zugriff-&gt;fetch_array(&#36;result)) eval ("&#92;&#36;avatars_bit .= &#92;"".gettemplate("activate_avatars_bit")."&#92;";");<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;eval("dooutput(&#92;"".gettemplate("activate_avatar")."&#92;");");<br />
}</code></div></div><br />
7.) Öffne die templates/profile_avatars.htm und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td colspan=2&gt;&lt;FONT face="{font}" size=2&nbsp;&nbsp;color="{fontcolorsecond}"&gt;&lt;b&gt;Avatare&lt;/b&gt;</code></div></div>füge dahinter ein:<br />
&#36;hinweis<br />
<br />
8.) Öffne die profile.php und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if (&#36;upload-&gt;doUpload()) &#36;db_zugriff-&gt;query("UPDATE bb".&#36;n."_user_table set avatarid = '&#36;insertid' WHERE userid = '&#36;user_id'");<br />
else eval ("&#92;&#36;error = &#92;"".gettemplate("error3")."&#92;";");</code></div></div>ersetze es durch:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if (&#36;upload-&gt;doUpload()){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#36;db_zugriff-&gt;query("UPDATE bb".&#36;n."_user_table set avatarid = '&#36;insertid' WHERE userid = '&#36;user_id'");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#36;hinweis="&lt;br&gt;Bevor dein Avatar sichtbar ist, wird er von einem Admin geprüft. Bitte habe dafür Verständnis.";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#36;db_zugriff-&gt;query("INSERT INTO bb".&#36;n."_pms(senderid,recipientid,sendtime,subject,message,icon,disable_smilies) VALUES('1','1','".time()."','Neuer Avatar bereit zum freischalten','Ein neuer Avatar wurde gewählt und muss nun freigeschaltet werden','./images/icons/ausrufezeichen.gif','0')");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}else{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; eval ("&#92;&#36;error = &#92;"".gettemplate("error3")."&#92;";");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</code></div></div><br />
Abschließend musst du noch die beiden Templates aus dem .zip Archiv in den Ordner admin/templates laden!<br />
<br />
Viel Erfolg mit der Erweiterung!<br />
<br />
Gruß pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1529" target="_blank" title="">avatar_freischalten_tpl.zip</a> (Größe: 929 Bytes / Downloads: 293)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Multiedit für wBB2.3]]></title>
			<link>https://net-board.net/showthread.php?tid=5656</link>
			<pubDate>Wed, 15 Aug 2007 23:08:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=1">pattex</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5656</guid>
			<description><![CDATA[Guten Abend liebe wBB-Fans,<br />
<br />
es gibt wieder etwas neues für euer wBB2 was die Administration zumindest ein wenig einfacher macht.<br />
Eine genauere Beschreibung was der Hack macht erspare ich mir. Am besten lest ihr euch dazu einfach diesen Thread durch:<br />
<a href="http://netboard.sunsonic.de/wbboard/thread.php?threadid=5891" target="_blank" rel="noopener" class="mycode_url"><span style="font-weight: bold;" class="mycode_b">Multiedit für wBB lite</span></a><br />
<a href="http://netboard.sunsonic.de/wbboard/thread.php?threadid=5891" target="_blank" rel="noopener" class="mycode_url"><span style="font-weight: bold;" class="mycode_b"></span></a><br />
Kleine Änderung zum wBB lite gibt es allerdings: Moderieren kann nun jeder, der in diesem Forum auch moderative Rechte hat. Somit lässt sich das ganze viel flexibler anpassen.<br />
<a href="http://netboard.sunsonic.de/wbboard/thread.php?threadid=5891" target="_blank" rel="noopener" class="mycode_url"><span style="font-weight: bold;" class="mycode_b"></span></a><br />
<span style="text-decoration: underline;" class="mycode_u">Einbau:</span><br />
<span style="font-weight: bold;" class="mycode_b">Neue Dateien:</span><br />
multiedit.php<br />
ajax.js<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Neue Templates:</span><br />
multiedit_warning.tpl<br />
<br />
1.) Lade die neue Datei und das Template auf deinen Server und importiere das Template.<br />
<br />
2.) Öffne die Datei <span style="font-weight: bold;" class="mycode_b">board.php</span> und suche:<br />
 <div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>require('./global.php');</code></div></div>füge darunter ein:<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>include("multiedit.php");</code></div></div> 3.) Öffne das<span style="font-weight: bold;" class="mycode_b"> Template board</span> und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&lt;td class="tabletitle"&gt;&lt;table cellpadding="0" cellspacing="0" border="0" style="width:100%"&gt;<br />
&lt;tr class="tabletitle_fc"&gt;<br />
&lt;td align="left"&gt;&lt;span class="smallfont"&gt;&lt;if(isset(&#36;moderatorbit))&gt;&lt;then&gt;({&#36;lang-&gt;items['LANG_BOARD_MODERATED_BY']} &#36;moderatorbit)&lt;/then&gt;&lt;/if&gt;&lt;/span&gt;&lt;/td&gt;<br />
&lt;td align="right" valign="top"&gt;&lt;span class="smallfont"&gt;&lt;a href="usercp.php?action=addsubscription&amp;amp;boardid=&#36;boardid{&#36;SID_ARG_2ND}"&gt;{&#36;lang-&gt;items['LANG_BOARD_ADD_FAVORITES']}&lt;/a&gt; | &lt;a href="markread.php?boardid=&#36;boardid{&#36;SID_ARG_2ND}"&gt;{&#36;lang-&gt;items['LANG_BOARD_MARKREAD']}&lt;/a&gt;&lt;/span&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div><span style="font-weight: bold;" class="mycode_b">füge darunter ein:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;if(checkmodpermissions())&gt;&lt;then&gt;<br />
&lt;tr&gt;<br />
&lt;td class="tablea"&gt;<br />
&#36;multiedit_warning<br />
&lt;form action=board.php?boardid=&#36;_GET[boardid] method=post&gt;<br />
&lt;div id="multidiv1" align="left" style="display:block;"&gt;<br />
&lt;table border=0&gt;&lt;tr&gt;&lt;td&gt;&#36;markall&lt;/td&gt;&lt;td&gt;<br />
&lt;div id="multidiv"&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;<br />
<br />
&lt;/div&gt;<br />
&lt;/td&gt;&lt;/tr&gt;<br />
&lt;/then&gt;&lt;/if&gt;</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td valign="top" align="right"&gt;&#36;boardjump&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</code></div></div><span style="font-weight: bold;" class="mycode_b">füge darunter ein:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;/form&gt;</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">ersetze im gesamten Template dieses:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>colspan="&lt;if(&#36;board['allowratings']==1)&gt;&lt;then&gt;8&lt;/then&gt;&lt;else&gt;7&lt;/else&gt;&lt;/if&gt;"</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">durch:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>colspan="&lt;if(&#36;board['allowratings']==1)&gt;&lt;then&gt;9&lt;/then&gt;&lt;else&gt;8&lt;/else&gt;&lt;/if&gt;"</code></div></div><span style="font-weight: bold;" class="mycode_b"></span><br />
<span style="font-weight: bold;" class="mycode_b">suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
function who(threadid) {<br />
window.open("misc.php?action=whoposted&amp;threadid="+threadid+"{&#36;SID_ARG_2ND_UN}", "moo", "toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300");<br />
}<br />
//--&gt;<br />
&lt;/script&gt;<br />
&lt;/head&gt;</code></div></div><span style="font-weight: bold;" class="mycode_b">füge darunter ein:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;script src="ajax.js"&gt;&lt;/script&gt;</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td class="tabletitle" colspan="3"&gt;&lt;b&gt;&lt;a href="board.php?boardid=&#36;boardid&amp;amp;page=&#36;page&amp;amp;daysprune=&#36;daysprune&amp;amp;sortfield=topic&amp;amp;sortorder=&lt;if(&#36;sortfield == 'topic' &amp;&amp; &#36;sortorder == 'ASC')&gt;&lt;then&gt;DESC&lt;/then&gt;&lt;else&gt;ASC&lt;/else&gt;&lt;/if&gt;{&#36;SID_ARG_2ND}"&gt;{&#36;lang-&gt;items['LANG_BOARD_THREAD']}&lt;/a&gt;&lt;/b&gt; &lt;if(&#36;sortfield == 'topic')&gt;&lt;then&gt;&lt;a href="board.php?boardid=&#36;boardid&amp;amp;daysprune=&#36;daysprune&amp;amp;sortfield=&#36;sortfield&amp;amp;sortorder=&lt;if(&#36;sortorder == 'DESC')&gt;&lt;then&gt;ASC&lt;/then&gt;&lt;else&gt;DESC&lt;/else&gt;&lt;/if&gt;{&#36;SID_ARG_2ND}"&gt;&lt;img src="{&#36;style['imagefolder']}/&lt;if(&#36;sortorder == 'DESC')&gt;&lt;then&gt;sortasc.gif&lt;/then&gt;&lt;else&gt;sortdesc.gif&lt;/else&gt;&lt;/if&gt;" alt="" border="0" /&gt;&lt;/a&gt;&lt;/then&gt;&lt;/if&gt;&lt;/td&gt;</code></div></div><span style="font-weight: bold;" class="mycode_b">ersetze es durch:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td class="tabletitle" colspan="4"&gt;&lt;b&gt;&lt;a href="board.php?boardid=&#36;boardid&amp;amp;page=&#36;page&amp;amp;daysprune=&#36;daysprune&amp;amp;sortfield=topic&amp;amp;sortorder=&lt;if(&#36;sortfield == 'topic' &amp;&amp; &#36;sortorder == 'ASC')&gt;&lt;then&gt;DESC&lt;/then&gt;&lt;else&gt;ASC&lt;/else&gt;&lt;/if&gt;{&#36;SID_ARG_2ND}"&gt;{&#36;lang-&gt;items['LANG_BOARD_THREAD']}&lt;/a&gt;&lt;/b&gt; &lt;if(&#36;sortfield == 'topic')&gt;&lt;then&gt;&lt;a href="board.php?boardid=&#36;boardid&amp;amp;daysprune=&#36;daysprune&amp;amp;sortfield=&#36;sortfield&amp;amp;sortorder=&lt;if(&#36;sortorder == 'DESC')&gt;&lt;then&gt;ASC&lt;/then&gt;&lt;else&gt;DESC&lt;/else&gt;&lt;/if&gt;{&#36;SID_ARG_2ND}"&gt;&lt;img src="{&#36;style['imagefolder']}/&lt;if(&#36;sortorder == 'DESC')&gt;&lt;then&gt;sortasc.gif&lt;/then&gt;&lt;else&gt;sortdesc.gif&lt;/else&gt;&lt;/if&gt;" alt="" border="0" /&gt;&lt;/a&gt;&lt;/then&gt;&lt;/if&gt;&lt;/td&gt;</code></div></div><br />
4.) Öffne das <span style="font-weight: bold;" class="mycode_b">Template board_threadbit</span> und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td class="tableb" colspan=&lt;if(checkmodpermissions())&gt;&lt;then&gt;1&lt;/then&gt;&lt;else&gt;2&lt;/else&gt;&lt;/if&gt;&gt;&#36;threadicon&lt;/td&gt;</code></div></div><span style="font-weight: bold;" class="mycode_b">füge darunter ein:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;if(checkmodpermissions())&gt;&lt;then&gt;<br />
&lt;td class="tablea"&gt;&lt;input type="checkbox" name="multiedit_threads[]" id="multiedit_threads" value="&#36;threads[threadid]" onclick="multiedit()"&gt;&lt;/td&gt;<br />
&lt;/then&gt;<br />
&lt;/if&gt;</code></div></div><span style="font-weight: bold;" class="mycode_b"></span><br />
<span style="font-weight: bold;" class="mycode_b">Ersetze diese Zeile:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td class="tableb"&gt;&#36;threadicon&lt;/td&gt;</code></div></div><span style="font-weight: bold;" class="mycode_b">durch:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td class="tableb" colspan=&lt;if(checkmodpermissions())&gt;&lt;then&gt;1&lt;/then&gt;&lt;else&gt;2&lt;/else&gt;&lt;/if&gt;&gt;&#36;threadicon&lt;/td&gt;</code></div></div><br />
Viel Spaß und Erfolg mit dieser Erweiterung!<br />
<br />
Gruß Pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1528" target="_blank" title="">multiedit_wbb2.zip</a> (Größe: 2,86 KB / Downloads: 328)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Guten Abend liebe wBB-Fans,<br />
<br />
es gibt wieder etwas neues für euer wBB2 was die Administration zumindest ein wenig einfacher macht.<br />
Eine genauere Beschreibung was der Hack macht erspare ich mir. Am besten lest ihr euch dazu einfach diesen Thread durch:<br />
<a href="http://netboard.sunsonic.de/wbboard/thread.php?threadid=5891" target="_blank" rel="noopener" class="mycode_url"><span style="font-weight: bold;" class="mycode_b">Multiedit für wBB lite</span></a><br />
<a href="http://netboard.sunsonic.de/wbboard/thread.php?threadid=5891" target="_blank" rel="noopener" class="mycode_url"><span style="font-weight: bold;" class="mycode_b"></span></a><br />
Kleine Änderung zum wBB lite gibt es allerdings: Moderieren kann nun jeder, der in diesem Forum auch moderative Rechte hat. Somit lässt sich das ganze viel flexibler anpassen.<br />
<a href="http://netboard.sunsonic.de/wbboard/thread.php?threadid=5891" target="_blank" rel="noopener" class="mycode_url"><span style="font-weight: bold;" class="mycode_b"></span></a><br />
<span style="text-decoration: underline;" class="mycode_u">Einbau:</span><br />
<span style="font-weight: bold;" class="mycode_b">Neue Dateien:</span><br />
multiedit.php<br />
ajax.js<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Neue Templates:</span><br />
multiedit_warning.tpl<br />
<br />
1.) Lade die neue Datei und das Template auf deinen Server und importiere das Template.<br />
<br />
2.) Öffne die Datei <span style="font-weight: bold;" class="mycode_b">board.php</span> und suche:<br />
 <div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>require('./global.php');</code></div></div>füge darunter ein:<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>include("multiedit.php");</code></div></div> 3.) Öffne das<span style="font-weight: bold;" class="mycode_b"> Template board</span> und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;tr&gt;<br />
&lt;td class="tabletitle"&gt;&lt;table cellpadding="0" cellspacing="0" border="0" style="width:100%"&gt;<br />
&lt;tr class="tabletitle_fc"&gt;<br />
&lt;td align="left"&gt;&lt;span class="smallfont"&gt;&lt;if(isset(&#36;moderatorbit))&gt;&lt;then&gt;({&#36;lang-&gt;items['LANG_BOARD_MODERATED_BY']} &#36;moderatorbit)&lt;/then&gt;&lt;/if&gt;&lt;/span&gt;&lt;/td&gt;<br />
&lt;td align="right" valign="top"&gt;&lt;span class="smallfont"&gt;&lt;a href="usercp.php?action=addsubscription&amp;amp;boardid=&#36;boardid{&#36;SID_ARG_2ND}"&gt;{&#36;lang-&gt;items['LANG_BOARD_ADD_FAVORITES']}&lt;/a&gt; | &lt;a href="markread.php?boardid=&#36;boardid{&#36;SID_ARG_2ND}"&gt;{&#36;lang-&gt;items['LANG_BOARD_MARKREAD']}&lt;/a&gt;&lt;/span&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;&lt;/td&gt;<br />
&lt;/tr&gt;</code></div></div><span style="font-weight: bold;" class="mycode_b">füge darunter ein:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;if(checkmodpermissions())&gt;&lt;then&gt;<br />
&lt;tr&gt;<br />
&lt;td class="tablea"&gt;<br />
&#36;multiedit_warning<br />
&lt;form action=board.php?boardid=&#36;_GET[boardid] method=post&gt;<br />
&lt;div id="multidiv1" align="left" style="display:block;"&gt;<br />
&lt;table border=0&gt;&lt;tr&gt;&lt;td&gt;&#36;markall&lt;/td&gt;&lt;td&gt;<br />
&lt;div id="multidiv"&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;<br />
<br />
&lt;/div&gt;<br />
&lt;/td&gt;&lt;/tr&gt;<br />
&lt;/then&gt;&lt;/if&gt;</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td valign="top" align="right"&gt;&#36;boardjump&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</code></div></div><span style="font-weight: bold;" class="mycode_b">füge darunter ein:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;/form&gt;</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">ersetze im gesamten Template dieses:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>colspan="&lt;if(&#36;board['allowratings']==1)&gt;&lt;then&gt;8&lt;/then&gt;&lt;else&gt;7&lt;/else&gt;&lt;/if&gt;"</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">durch:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>colspan="&lt;if(&#36;board['allowratings']==1)&gt;&lt;then&gt;9&lt;/then&gt;&lt;else&gt;8&lt;/else&gt;&lt;/if&gt;"</code></div></div><span style="font-weight: bold;" class="mycode_b"></span><br />
<span style="font-weight: bold;" class="mycode_b">suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;script type="text/javascript"&gt;<br />
&lt;!--<br />
function who(threadid) {<br />
window.open("misc.php?action=whoposted&amp;threadid="+threadid+"{&#36;SID_ARG_2ND_UN}", "moo", "toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300");<br />
}<br />
//--&gt;<br />
&lt;/script&gt;<br />
&lt;/head&gt;</code></div></div><span style="font-weight: bold;" class="mycode_b">füge darunter ein:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;script src="ajax.js"&gt;&lt;/script&gt;</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td class="tabletitle" colspan="3"&gt;&lt;b&gt;&lt;a href="board.php?boardid=&#36;boardid&amp;amp;page=&#36;page&amp;amp;daysprune=&#36;daysprune&amp;amp;sortfield=topic&amp;amp;sortorder=&lt;if(&#36;sortfield == 'topic' &amp;&amp; &#36;sortorder == 'ASC')&gt;&lt;then&gt;DESC&lt;/then&gt;&lt;else&gt;ASC&lt;/else&gt;&lt;/if&gt;{&#36;SID_ARG_2ND}"&gt;{&#36;lang-&gt;items['LANG_BOARD_THREAD']}&lt;/a&gt;&lt;/b&gt; &lt;if(&#36;sortfield == 'topic')&gt;&lt;then&gt;&lt;a href="board.php?boardid=&#36;boardid&amp;amp;daysprune=&#36;daysprune&amp;amp;sortfield=&#36;sortfield&amp;amp;sortorder=&lt;if(&#36;sortorder == 'DESC')&gt;&lt;then&gt;ASC&lt;/then&gt;&lt;else&gt;DESC&lt;/else&gt;&lt;/if&gt;{&#36;SID_ARG_2ND}"&gt;&lt;img src="{&#36;style['imagefolder']}/&lt;if(&#36;sortorder == 'DESC')&gt;&lt;then&gt;sortasc.gif&lt;/then&gt;&lt;else&gt;sortdesc.gif&lt;/else&gt;&lt;/if&gt;" alt="" border="0" /&gt;&lt;/a&gt;&lt;/then&gt;&lt;/if&gt;&lt;/td&gt;</code></div></div><span style="font-weight: bold;" class="mycode_b">ersetze es durch:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td class="tabletitle" colspan="4"&gt;&lt;b&gt;&lt;a href="board.php?boardid=&#36;boardid&amp;amp;page=&#36;page&amp;amp;daysprune=&#36;daysprune&amp;amp;sortfield=topic&amp;amp;sortorder=&lt;if(&#36;sortfield == 'topic' &amp;&amp; &#36;sortorder == 'ASC')&gt;&lt;then&gt;DESC&lt;/then&gt;&lt;else&gt;ASC&lt;/else&gt;&lt;/if&gt;{&#36;SID_ARG_2ND}"&gt;{&#36;lang-&gt;items['LANG_BOARD_THREAD']}&lt;/a&gt;&lt;/b&gt; &lt;if(&#36;sortfield == 'topic')&gt;&lt;then&gt;&lt;a href="board.php?boardid=&#36;boardid&amp;amp;daysprune=&#36;daysprune&amp;amp;sortfield=&#36;sortfield&amp;amp;sortorder=&lt;if(&#36;sortorder == 'DESC')&gt;&lt;then&gt;ASC&lt;/then&gt;&lt;else&gt;DESC&lt;/else&gt;&lt;/if&gt;{&#36;SID_ARG_2ND}"&gt;&lt;img src="{&#36;style['imagefolder']}/&lt;if(&#36;sortorder == 'DESC')&gt;&lt;then&gt;sortasc.gif&lt;/then&gt;&lt;else&gt;sortdesc.gif&lt;/else&gt;&lt;/if&gt;" alt="" border="0" /&gt;&lt;/a&gt;&lt;/then&gt;&lt;/if&gt;&lt;/td&gt;</code></div></div><br />
4.) Öffne das <span style="font-weight: bold;" class="mycode_b">Template board_threadbit</span> und suche:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td class="tableb" colspan=&lt;if(checkmodpermissions())&gt;&lt;then&gt;1&lt;/then&gt;&lt;else&gt;2&lt;/else&gt;&lt;/if&gt;&gt;&#36;threadicon&lt;/td&gt;</code></div></div><span style="font-weight: bold;" class="mycode_b">füge darunter ein:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;if(checkmodpermissions())&gt;&lt;then&gt;<br />
&lt;td class="tablea"&gt;&lt;input type="checkbox" name="multiedit_threads[]" id="multiedit_threads" value="&#36;threads[threadid]" onclick="multiedit()"&gt;&lt;/td&gt;<br />
&lt;/then&gt;<br />
&lt;/if&gt;</code></div></div><span style="font-weight: bold;" class="mycode_b"></span><br />
<span style="font-weight: bold;" class="mycode_b">Ersetze diese Zeile:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td class="tableb"&gt;&#36;threadicon&lt;/td&gt;</code></div></div><span style="font-weight: bold;" class="mycode_b">durch:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td class="tableb" colspan=&lt;if(checkmodpermissions())&gt;&lt;then&gt;1&lt;/then&gt;&lt;else&gt;2&lt;/else&gt;&lt;/if&gt;&gt;&#36;threadicon&lt;/td&gt;</code></div></div><br />
Viel Spaß und Erfolg mit dieser Erweiterung!<br />
<br />
Gruß Pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1528" target="_blank" title="">multiedit_wbb2.zip</a> (Größe: 2,86 KB / Downloads: 328)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Guckloch für Simple Machines Forum (SMF)]]></title>
			<link>https://net-board.net/showthread.php?tid=5649</link>
			<pubDate>Wed, 01 Aug 2007 21:47:26 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=1">pattex</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5649</guid>
			<description><![CDATA[Auf Wunsch habe ich nun ein "Guckloch" für das SMF erstellt.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version</span> 0.1<br />
<span style="font-weight: bold;" class="mycode_b">Herausgegeben am </span>01.08.2007<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Was kann es?</span><ul class="mycode_list"><li>In einem Popup sieht man die letzten geschriebenen Beiträge<br />
</li>
<li>Das Popup aktualisiert sich alle 10 Sekunden (man sieht also sofort ob ein neuer Beitrag erstellt wurde)<br />
</li>
<li>Die Beiträge werden Gruppenabhängig angezeigt. D.h. Gäste sehen auch nur die Beiträge, die sie auch so sehen könnten.<br />
</li>
</ul>
  <span style="font-weight: bold;" class="mycode_b">Einbau </span><br />
<ol type="1" class="mycode_list"><li>Ladet die Guckloch.php aus dem Anhang in euer Hauptverzeichnis<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Öffne die Datei ./Sources/Load.php und suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>function loadTheme(&#36;ID_THEME = 0, &#36;initialize = true)<br />
{<br />
&nbsp;&nbsp;&nbsp;&nbsp;global &#36;ID_MEMBER, &#36;user_info, &#36;board_info, &#36;sc;<br />
&nbsp;&nbsp;&nbsp;&nbsp;global &#36;db_prefix, &#36;txt, &#36;boardurl, &#36;scripturl, &#36;mbname, &#36;modSettings;<br />
&nbsp;&nbsp;&nbsp;&nbsp;global &#36;context, &#36;settings, &#36;options;</code></div></div><span style="font-weight: bold;" class="mycode_b">fügt hinter &#36;options an:</span><br />
,&#36;site_ort<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;array_unshift(&#36;context['linktree'], array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'url' =&gt; &amp;&#36;scripturl,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name' =&gt; &amp;&#36;context['forum_name']<br />
&nbsp;&nbsp;&nbsp;&nbsp;));</code></div></div><span style="font-weight: bold;" class="mycode_b">ersetze es durch:</span><br />
	<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(&#36;site_ort!="Guckloch"){<br />
&nbsp;&nbsp;&nbsp;&nbsp;array_unshift(&#36;context['linktree'], array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'url' =&gt; &amp;&#36;scripturl,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name' =&gt; &amp;&#36;context['forum_name']<br />
&nbsp;&nbsp;&nbsp;&nbsp;));<br />
&nbsp;&nbsp;&nbsp;&nbsp;}</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Öffne die Datei ./Sources/index.template.php und suche:</span><br />
	&lt;title&gt;', &#36;context['page_title'], '&lt;/title&gt;';<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Füge darüber ein:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;script language="JavaScript" type="text/javascript"&gt;<br />
var pop = null;<br />
<br />
function popdown() {<br />
&nbsp;&nbsp;if (pop &amp;&amp; !pop.closed) pop.close();<br />
}<br />
<br />
function popup(obj,w,h) {<br />
&nbsp;&nbsp;var url = (obj.getAttribute) ? obj.getAttribute("href") : obj.href;<br />
&nbsp;&nbsp;if (!url) return true;<br />
&nbsp;&nbsp;w = (w) ? w += 20 : 150;&nbsp;&nbsp;// 150px*150px is the default size<br />
&nbsp;&nbsp;h = (h) ? h += 25 : 150;<br />
&nbsp;&nbsp;var args = "width="+w+",height="+h+",resizable,scrollbars";<br />
&nbsp;&nbsp;popdown();<br />
&nbsp;&nbsp;pop = window.open(url,"",args);<br />
&nbsp;&nbsp;return (pop) ? false : true;<br />
}<br />
&lt;/script&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Fügt nun an einer geeigneten Stelle diesen Code ein:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;a href="./Guckloch.php" onclick="return popup(this,650,200)"&gt;Guckloch&lt;/a&gt;</code></div></div><br />
Viel Spaß mit der kleinen Erweiterung!<br />
Gruß Pattex<br />
<br />
<br />
<br />
[/list=1]</li>
</ol>
<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1523" target="_blank" title="">guckloch.php_smf.zip</a> (Größe: 2,29 KB / Downloads: 443)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1524" target="_blank" title="">guckloch.jpg</a> (Größe: 85,02 KB / Downloads: 992)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Auf Wunsch habe ich nun ein "Guckloch" für das SMF erstellt.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Version</span> 0.1<br />
<span style="font-weight: bold;" class="mycode_b">Herausgegeben am </span>01.08.2007<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Was kann es?</span><ul class="mycode_list"><li>In einem Popup sieht man die letzten geschriebenen Beiträge<br />
</li>
<li>Das Popup aktualisiert sich alle 10 Sekunden (man sieht also sofort ob ein neuer Beitrag erstellt wurde)<br />
</li>
<li>Die Beiträge werden Gruppenabhängig angezeigt. D.h. Gäste sehen auch nur die Beiträge, die sie auch so sehen könnten.<br />
</li>
</ul>
  <span style="font-weight: bold;" class="mycode_b">Einbau </span><br />
<ol type="1" class="mycode_list"><li>Ladet die Guckloch.php aus dem Anhang in euer Hauptverzeichnis<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Öffne die Datei ./Sources/Load.php und suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>function loadTheme(&#36;ID_THEME = 0, &#36;initialize = true)<br />
{<br />
&nbsp;&nbsp;&nbsp;&nbsp;global &#36;ID_MEMBER, &#36;user_info, &#36;board_info, &#36;sc;<br />
&nbsp;&nbsp;&nbsp;&nbsp;global &#36;db_prefix, &#36;txt, &#36;boardurl, &#36;scripturl, &#36;mbname, &#36;modSettings;<br />
&nbsp;&nbsp;&nbsp;&nbsp;global &#36;context, &#36;settings, &#36;options;</code></div></div><span style="font-weight: bold;" class="mycode_b">fügt hinter &#36;options an:</span><br />
,&#36;site_ort<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;array_unshift(&#36;context['linktree'], array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'url' =&gt; &amp;&#36;scripturl,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name' =&gt; &amp;&#36;context['forum_name']<br />
&nbsp;&nbsp;&nbsp;&nbsp;));</code></div></div><span style="font-weight: bold;" class="mycode_b">ersetze es durch:</span><br />
	<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(&#36;site_ort!="Guckloch"){<br />
&nbsp;&nbsp;&nbsp;&nbsp;array_unshift(&#36;context['linktree'], array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'url' =&gt; &amp;&#36;scripturl,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name' =&gt; &amp;&#36;context['forum_name']<br />
&nbsp;&nbsp;&nbsp;&nbsp;));<br />
&nbsp;&nbsp;&nbsp;&nbsp;}</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Öffne die Datei ./Sources/index.template.php und suche:</span><br />
	&lt;title&gt;', &#36;context['page_title'], '&lt;/title&gt;';<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Füge darüber ein:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;script language="JavaScript" type="text/javascript"&gt;<br />
var pop = null;<br />
<br />
function popdown() {<br />
&nbsp;&nbsp;if (pop &amp;&amp; !pop.closed) pop.close();<br />
}<br />
<br />
function popup(obj,w,h) {<br />
&nbsp;&nbsp;var url = (obj.getAttribute) ? obj.getAttribute("href") : obj.href;<br />
&nbsp;&nbsp;if (!url) return true;<br />
&nbsp;&nbsp;w = (w) ? w += 20 : 150;&nbsp;&nbsp;// 150px*150px is the default size<br />
&nbsp;&nbsp;h = (h) ? h += 25 : 150;<br />
&nbsp;&nbsp;var args = "width="+w+",height="+h+",resizable,scrollbars";<br />
&nbsp;&nbsp;popdown();<br />
&nbsp;&nbsp;pop = window.open(url,"",args);<br />
&nbsp;&nbsp;return (pop) ? false : true;<br />
}<br />
&lt;/script&gt;</code></div></div></li>
<li><span style="font-weight: bold;" class="mycode_b">Fügt nun an einer geeigneten Stelle diesen Code ein:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;a href="./Guckloch.php" onclick="return popup(this,650,200)"&gt;Guckloch&lt;/a&gt;</code></div></div><br />
Viel Spaß mit der kleinen Erweiterung!<br />
Gruß Pattex<br />
<br />
<br />
<br />
[/list=1]</li>
</ol>
<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1523" target="_blank" title="">guckloch.php_smf.zip</a> (Größe: 2,29 KB / Downloads: 443)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1524" target="_blank" title="">guckloch.jpg</a> (Größe: 85,02 KB / Downloads: 992)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Moderatorenspalte entfernen wBB Lite]]></title>
			<link>https://net-board.net/showthread.php?tid=5632</link>
			<pubDate>Mon, 16 Jul 2007 22:49:31 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=1">pattex</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5632</guid>
			<description><![CDATA[<span style="font-size: 12pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Moderatorenspalte entfernen</span></span><br />
<span style="font-size: 12pt;" class="mycode_size">Mit Hilfe dieser Anleitung könnt ihr die Moderatorenspalte in eurem wbb Lite entfernen.</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Zu ändernde Templates:</span></span><br />
<span style="font-size: 12pt;" class="mycode_size">index.tpl</span><br />
<span style="font-size: 12pt;" class="mycode_size">index_boardbit1.tpl</span><br />
<span style="font-size: 12pt;" class="mycode_size">index_boardbit2.tpl</span><br />
<span style="font-size: 12pt;" class="mycode_size">index_boardbit3.tpl</span><br />
<span style="font-size: 12pt;" class="mycode_size">board_cat.tpl</span><br />
<span style="font-size: 12pt;" class="mycode_size">board_subboards.tpl</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="color: #ff0033;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Der Template Ordner ist in den meisten Fällen ./templates. Kann aber abweichen wenn ihr z.B. mehrere Templateordner in eurem Board habt.</span></span></span><span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">1</span>. Öffne das Template index.tpl und suche:</span><br />
 <span style="font-size: 12pt;" class="mycode_size"><span style="font-style: italic;" class="mycode_i">&lt;td width="20%" align="center"&gt;&lt;smallfont color="{fontcolorsecond}"&gt;&lt;b&gt;Moderatoren&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;</span><span style="font-weight: bold;" class="mycode_b">entferne es!</span></span> <span style="font-size: 12pt;" class="mycode_size">Anschließend Datei abspeichern und wieder auf den Server laden.</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">2. </span>Öffne das Template index_boardbit1.tpl und suche:</span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-style: italic;" class="mycode_i">&lt;td id="tablea" bgcolor="{tablecolora}" width="20%" align="center"&gt;&lt;smallfont&gt;&#36;moderators&lt;/font&gt;&lt;/td&gt;</span></span><br />
<span style="font-size: 12pt;" class="mycode_size">entferne es!</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size">Anschließend Datei abspeichern und wieder auf den Server laden.</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 14pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">3.</span></span><span style="font-size: 12pt;" class="mycode_size"> Öffne das Template index_boardbit2.tpl und suche:</span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-style: italic;" class="mycode_i">&lt;td id="tablea" bgcolor="{tablecolora}" width="20%" align="center"&gt;&lt;smallfont&gt;&#36;moderators&lt;/font&gt;&lt;/td&gt;</span></span><br />
<span style="font-size: 12pt;" class="mycode_size">entferne es! </span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size">Anschließend Datei abspeichern und wieder auf den Server laden.</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 14pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">4. </span></span><span style="font-size: 12pt;" class="mycode_size">Öffne das Template index_boardbit3.tpl und suche:</span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-style: italic;" class="mycode_i">&lt;td id="tablea" bgcolor="{tablecolora}" width="20%" align="center"&gt;&lt;smallfont&gt;&#36;moderators&lt;/font&gt;&lt;/td&gt;</span></span><br />
<span style="font-size: 12pt;" class="mycode_size">entferne es! </span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size">Anschließend Datei abspeichern und wieder auf den Server laden.</span><br />
<span style="font-size: 14pt;" class="mycode_size"></span><br />
<span style="font-size: 14pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">5. </span></span><span style="font-size: 12pt;" class="mycode_size">Öffne das Template board_cat.tpl und suche:</span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-style: italic;" class="mycode_i"> &lt;td width="20%" align="center"&gt;&lt;smallfont color="{fontcolorsecond}"&gt;&lt;b&gt;Moderatoren&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;</span></span><br />
<span style="font-size: 12pt;" class="mycode_size">entferne es! </span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size">Anschließend Datei abspeichern und wieder auf den Server laden.</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 14pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">6.</span></span><span style="font-size: 12pt;" class="mycode_size"> Öffne das Template board_subboards.tpl und suche:</span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-style: italic;" class="mycode_i"> &lt;td width="20%" align="center"&gt;&lt;smallfont color="{fontcolorsecond}"&gt;&lt;b&gt;Moderatoren&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;</span></span><br />
<span style="font-size: 12pt;" class="mycode_size">entferne es! </span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size">Anschließend Datei abspeichern und wieder auf den Server laden.</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size">Viel Erfolg beim Einbau!</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size">Gruß Pattex</span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: 12pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Moderatorenspalte entfernen</span></span><br />
<span style="font-size: 12pt;" class="mycode_size">Mit Hilfe dieser Anleitung könnt ihr die Moderatorenspalte in eurem wbb Lite entfernen.</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Zu ändernde Templates:</span></span><br />
<span style="font-size: 12pt;" class="mycode_size">index.tpl</span><br />
<span style="font-size: 12pt;" class="mycode_size">index_boardbit1.tpl</span><br />
<span style="font-size: 12pt;" class="mycode_size">index_boardbit2.tpl</span><br />
<span style="font-size: 12pt;" class="mycode_size">index_boardbit3.tpl</span><br />
<span style="font-size: 12pt;" class="mycode_size">board_cat.tpl</span><br />
<span style="font-size: 12pt;" class="mycode_size">board_subboards.tpl</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="color: #ff0033;" class="mycode_color"><span style="font-weight: bold;" class="mycode_b">Der Template Ordner ist in den meisten Fällen ./templates. Kann aber abweichen wenn ihr z.B. mehrere Templateordner in eurem Board habt.</span></span></span><span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">1</span>. Öffne das Template index.tpl und suche:</span><br />
 <span style="font-size: 12pt;" class="mycode_size"><span style="font-style: italic;" class="mycode_i">&lt;td width="20%" align="center"&gt;&lt;smallfont color="{fontcolorsecond}"&gt;&lt;b&gt;Moderatoren&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;</span><span style="font-weight: bold;" class="mycode_b">entferne es!</span></span> <span style="font-size: 12pt;" class="mycode_size">Anschließend Datei abspeichern und wieder auf den Server laden.</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">2. </span>Öffne das Template index_boardbit1.tpl und suche:</span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-style: italic;" class="mycode_i">&lt;td id="tablea" bgcolor="{tablecolora}" width="20%" align="center"&gt;&lt;smallfont&gt;&#36;moderators&lt;/font&gt;&lt;/td&gt;</span></span><br />
<span style="font-size: 12pt;" class="mycode_size">entferne es!</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size">Anschließend Datei abspeichern und wieder auf den Server laden.</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 14pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">3.</span></span><span style="font-size: 12pt;" class="mycode_size"> Öffne das Template index_boardbit2.tpl und suche:</span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-style: italic;" class="mycode_i">&lt;td id="tablea" bgcolor="{tablecolora}" width="20%" align="center"&gt;&lt;smallfont&gt;&#36;moderators&lt;/font&gt;&lt;/td&gt;</span></span><br />
<span style="font-size: 12pt;" class="mycode_size">entferne es! </span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size">Anschließend Datei abspeichern und wieder auf den Server laden.</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 14pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">4. </span></span><span style="font-size: 12pt;" class="mycode_size">Öffne das Template index_boardbit3.tpl und suche:</span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-style: italic;" class="mycode_i">&lt;td id="tablea" bgcolor="{tablecolora}" width="20%" align="center"&gt;&lt;smallfont&gt;&#36;moderators&lt;/font&gt;&lt;/td&gt;</span></span><br />
<span style="font-size: 12pt;" class="mycode_size">entferne es! </span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size">Anschließend Datei abspeichern und wieder auf den Server laden.</span><br />
<span style="font-size: 14pt;" class="mycode_size"></span><br />
<span style="font-size: 14pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">5. </span></span><span style="font-size: 12pt;" class="mycode_size">Öffne das Template board_cat.tpl und suche:</span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-style: italic;" class="mycode_i"> &lt;td width="20%" align="center"&gt;&lt;smallfont color="{fontcolorsecond}"&gt;&lt;b&gt;Moderatoren&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;</span></span><br />
<span style="font-size: 12pt;" class="mycode_size">entferne es! </span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size">Anschließend Datei abspeichern und wieder auf den Server laden.</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 14pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">6.</span></span><span style="font-size: 12pt;" class="mycode_size"> Öffne das Template board_subboards.tpl und suche:</span><br />
<span style="font-size: 12pt;" class="mycode_size"><span style="font-style: italic;" class="mycode_i"> &lt;td width="20%" align="center"&gt;&lt;smallfont color="{fontcolorsecond}"&gt;&lt;b&gt;Moderatoren&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;</span></span><br />
<span style="font-size: 12pt;" class="mycode_size">entferne es! </span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size">Anschließend Datei abspeichern und wieder auf den Server laden.</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size">Viel Erfolg beim Einbau!</span><br />
<span style="font-size: 12pt;" class="mycode_size"></span><br />
<span style="font-size: 12pt;" class="mycode_size">Gruß Pattex</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Eigene Seite für TBB 1.2.3]]></title>
			<link>https://net-board.net/showthread.php?tid=5630</link>
			<pubDate>Mon, 16 Jul 2007 20:30:49 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=1">pattex</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5630</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b">Eigene Seite für dein TBB 1.2.3</span><br />
<span style="font-weight: bold;" class="mycode_b">Autor:</span> Pattex<span style="font-weight: bold;" class="mycode_b"></span><br />
<a href="http://www.tritanium-scripts.com/" target="_blank" rel="noopener" class="mycode_url">Link zum Download des Boards</a><br />
<br />
1.) <span style="font-weight: bold;" class="mycode_b">Öffne die index.php</span> und suche:<br />
 <div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;// faq.php&nbsp;&nbsp;&nbsp;&nbsp;<br />
case "faq":&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
include("pageheader.php");&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
include("faq.php");&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
include("pagetail.php");&nbsp;&nbsp;&nbsp;&nbsp;<br />
break;</code></div></div> <br />
Füge <span style="font-weight: bold;" class="mycode_b">darunter</span> ein:<br />
 <div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;// seite.php&nbsp;&nbsp;&nbsp;&nbsp;<br />
case "seite":&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
nclude("pageheader.php");&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
include("seite.php");&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
include("pagetail.php");&nbsp;&nbsp;&nbsp;&nbsp;<br />
break;</code></div></div> 2.) Lade die seite.php aus dem .zip Archiv auf deinen Webspace in das <span style="font-weight: bold;" class="mycode_b">Hauptverzeichnis deines TBB</span><br />
<br />
3.) Öffne die Datei seite.php und passe sie nach deinen Wünschen an.<br />
Möchtest du eine Seite includen dann trage sie hier bitte ein:<br />
<span style="font-style: italic;" class="mycode_i">&#36;page['include'] = ""; </span><br />
<br />
Andernfalls trägst du bei<br />
<span style="font-style: italic;" class="mycode_i"> echo'</span><br />
<span style="font-style: italic;" class="mycode_i"> DEINE SEITE HIER! </span><br />
<span style="font-style: italic;" class="mycode_i"> ';</span><br />
<br />
weiter unten deinen Text ein.<br />
<br />
<br />
Fragen bitte hier stellen.<br />
<br />
Viel Spaß <img src="https://net-board.net/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
Gruß Pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1510" target="_blank" title="">seite_tbb1.2.3.zip</a> (Größe: 555 Bytes / Downloads: 334)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b">Eigene Seite für dein TBB 1.2.3</span><br />
<span style="font-weight: bold;" class="mycode_b">Autor:</span> Pattex<span style="font-weight: bold;" class="mycode_b"></span><br />
<a href="http://www.tritanium-scripts.com/" target="_blank" rel="noopener" class="mycode_url">Link zum Download des Boards</a><br />
<br />
1.) <span style="font-weight: bold;" class="mycode_b">Öffne die index.php</span> und suche:<br />
 <div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;// faq.php&nbsp;&nbsp;&nbsp;&nbsp;<br />
case "faq":&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
include("pageheader.php");&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
include("faq.php");&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
include("pagetail.php");&nbsp;&nbsp;&nbsp;&nbsp;<br />
break;</code></div></div> <br />
Füge <span style="font-weight: bold;" class="mycode_b">darunter</span> ein:<br />
 <div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;// seite.php&nbsp;&nbsp;&nbsp;&nbsp;<br />
case "seite":&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
nclude("pageheader.php");&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
include("seite.php");&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
include("pagetail.php");&nbsp;&nbsp;&nbsp;&nbsp;<br />
break;</code></div></div> 2.) Lade die seite.php aus dem .zip Archiv auf deinen Webspace in das <span style="font-weight: bold;" class="mycode_b">Hauptverzeichnis deines TBB</span><br />
<br />
3.) Öffne die Datei seite.php und passe sie nach deinen Wünschen an.<br />
Möchtest du eine Seite includen dann trage sie hier bitte ein:<br />
<span style="font-style: italic;" class="mycode_i">&#36;page['include'] = ""; </span><br />
<br />
Andernfalls trägst du bei<br />
<span style="font-style: italic;" class="mycode_i"> echo'</span><br />
<span style="font-style: italic;" class="mycode_i"> DEINE SEITE HIER! </span><br />
<span style="font-style: italic;" class="mycode_i"> ';</span><br />
<br />
weiter unten deinen Text ein.<br />
<br />
<br />
Fragen bitte hier stellen.<br />
<br />
Viel Spaß <img src="https://net-board.net/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
Gruß Pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1510" target="_blank" title="">seite_tbb1.2.3.zip</a> (Größe: 555 Bytes / Downloads: 334)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Hangman für Simple Machines Forum (SMF)]]></title>
			<link>https://net-board.net/showthread.php?tid=5615</link>
			<pubDate>Thu, 12 Jul 2007 19:59:54 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=1">pattex</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5615</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b">Hackname:</span> Hangman<br />
<span style="font-weight: bold;" class="mycode_b">System: </span>Simple Machines Forum ab Version 1.1 (getestet)<br />
<span style="font-weight: bold;" class="mycode_b">Autor: </span>Pattex<br />
<span style="font-weight: bold;" class="mycode_b">Version:</span> 0.8<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Copyright: </span>Kein sichtbares, das Script darf aber nicht auf anderen Seiten angeboten werden.<br />
Erweiterungen sind aber erwünscht.<br />
<span style="font-weight: bold;" class="mycode_b">Demo:</span> <a href="http://forencheck-demos.sunsonic.de/demos/simplemachines/smf/index.php" target="_blank" rel="noopener" class="mycode_url">forencheck.de - Demo SMF</a><br />
<span style="font-weight: bold;" class="mycode_b">Sprache:</span> deutsch (Würde mich freuen wenn es noch freiwillige gibt die dieses Script in weitere Sprachen übersetzt.)<br />
<br />
<br />
Anleitung sowie alle Dateien sind im Anhang.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Funktionen:</span><br />
- Erlaubt dem Benutzer des Forums Wörter zu raten. Besser bekannt als "Hangman"<br />
- Rät er richtig wird ihm das in der Bestenliste gut geschrieben.<br />
- Darf man das Wort mehrmals erraten (kann der User der das Wort einträgt entscheiden) so hat der User weiterhin die Möglichkeit das Wort zu raten.<br />
- Alle Versuche und bisherigen Buchstaben werden gespeichert. Hat der User keine Lust mehr kann er das Spiel verlassen und sieht anschließend wieder die schon gelösten/geratenen Buchstaben.<br />
- Das Spiel wird illustriert durch eine Hangman Grafik<br />
- Per ACP lassen sich Rechte für jede Gruppen einstellen. Dazu zählt ob die Gruppe Hangman spielen darf, neue Wörter eintragen darf und ob sie die Bestenliste sehen sollen.<br />
- Eine Bestenliste gibt dem User einen Anreiz mehr zu raten<br />
- Das Script ist mehrsprachig angelegt. Mit den entsprechenden Sprachfiles kann man dieses Script auch in anderen Sprachen nutzen.<br />
<span style="font-weight: bold;" class="mycode_b"></span><br />
<span style="font-weight: bold;" class="mycode_b">Ein kleiner Hinweis: Habt ihr ein deutsches Sprachpaket müsst ihr auch dieses bearbeiten (betrifft alle Dateien im Ordner ./Themes/*Themename*/languages)</span><br />
<span style="font-weight: bold;" class="mycode_b"></span><br />
Viel Spaß mit dem Script. Über Rückmeldungen würde ich mich freuen.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">--------------------------------------------------<br />
01.08.2007!<br />
Neue Version verfügbar! Infos zum Update gibt es hier: <a href="http://netboard.sunsonic.de/wbboard/thread.php?postid=56282#post56282" target="_blank" rel="noopener" class="mycode_url">http://netboard.sunsonic.de/wbboard/thre...#post56282</a><br />
</span><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1508" target="_blank" title="">hangman_netboard_smf_0.8.zip</a> (Größe: 106,21 KB / Downloads: 371)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b">Hackname:</span> Hangman<br />
<span style="font-weight: bold;" class="mycode_b">System: </span>Simple Machines Forum ab Version 1.1 (getestet)<br />
<span style="font-weight: bold;" class="mycode_b">Autor: </span>Pattex<br />
<span style="font-weight: bold;" class="mycode_b">Version:</span> 0.8<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Copyright: </span>Kein sichtbares, das Script darf aber nicht auf anderen Seiten angeboten werden.<br />
Erweiterungen sind aber erwünscht.<br />
<span style="font-weight: bold;" class="mycode_b">Demo:</span> <a href="http://forencheck-demos.sunsonic.de/demos/simplemachines/smf/index.php" target="_blank" rel="noopener" class="mycode_url">forencheck.de - Demo SMF</a><br />
<span style="font-weight: bold;" class="mycode_b">Sprache:</span> deutsch (Würde mich freuen wenn es noch freiwillige gibt die dieses Script in weitere Sprachen übersetzt.)<br />
<br />
<br />
Anleitung sowie alle Dateien sind im Anhang.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Funktionen:</span><br />
- Erlaubt dem Benutzer des Forums Wörter zu raten. Besser bekannt als "Hangman"<br />
- Rät er richtig wird ihm das in der Bestenliste gut geschrieben.<br />
- Darf man das Wort mehrmals erraten (kann der User der das Wort einträgt entscheiden) so hat der User weiterhin die Möglichkeit das Wort zu raten.<br />
- Alle Versuche und bisherigen Buchstaben werden gespeichert. Hat der User keine Lust mehr kann er das Spiel verlassen und sieht anschließend wieder die schon gelösten/geratenen Buchstaben.<br />
- Das Spiel wird illustriert durch eine Hangman Grafik<br />
- Per ACP lassen sich Rechte für jede Gruppen einstellen. Dazu zählt ob die Gruppe Hangman spielen darf, neue Wörter eintragen darf und ob sie die Bestenliste sehen sollen.<br />
- Eine Bestenliste gibt dem User einen Anreiz mehr zu raten<br />
- Das Script ist mehrsprachig angelegt. Mit den entsprechenden Sprachfiles kann man dieses Script auch in anderen Sprachen nutzen.<br />
<span style="font-weight: bold;" class="mycode_b"></span><br />
<span style="font-weight: bold;" class="mycode_b">Ein kleiner Hinweis: Habt ihr ein deutsches Sprachpaket müsst ihr auch dieses bearbeiten (betrifft alle Dateien im Ordner ./Themes/*Themename*/languages)</span><br />
<span style="font-weight: bold;" class="mycode_b"></span><br />
Viel Spaß mit dem Script. Über Rückmeldungen würde ich mich freuen.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">--------------------------------------------------<br />
01.08.2007!<br />
Neue Version verfügbar! Infos zum Update gibt es hier: <a href="http://netboard.sunsonic.de/wbboard/thread.php?postid=56282#post56282" target="_blank" rel="noopener" class="mycode_url">http://netboard.sunsonic.de/wbboard/thre...#post56282</a><br />
</span><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1508" target="_blank" title="">hangman_netboard_smf_0.8.zip</a> (Größe: 106,21 KB / Downloads: 371)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[WBB3 Style für das WBB2 (nicht veröffentlicht)]]></title>
			<link>https://net-board.net/showthread.php?tid=5604</link>
			<pubDate>Mon, 02 Jul 2007 19:11:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=1">pattex</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5604</guid>
			<description><![CDATA[Ich dachte mir ... soo schwer kann das doch gar nicht sein. <br />
<br />
Aber es kam ganz anders <img src="https://net-board.net/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /> Nachdem nun das Board teilweise auseinandergebaut wurde und eigentlich auch nur die Startseite halbwegs aussieht wie das WBB3 zeige ich euch ein erste Resultat.<br />
<br />
Die Buttons mache ich noch, die Suche oben auch.<br />
Threadansicht, Themenansicht, Suchansicht und was weiß ich kommt auch noch.<br />
<br />
Leider keine Live Demo (zur Zeit) weil ich nicht weiß wie das Lizenztechnisch aussieht.<br />
Werde mich da mal an woltlab wenden.<br />
<br />
Sagt mal was zu meinem nachgebauten Style <img src="https://net-board.net/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
<br />
<br />
Gruß Pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1500" target="_blank" title="">1beta.jpg</a> (Größe: 99,24 KB / Downloads: 1558)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Ich dachte mir ... soo schwer kann das doch gar nicht sein. <br />
<br />
Aber es kam ganz anders <img src="https://net-board.net/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /> Nachdem nun das Board teilweise auseinandergebaut wurde und eigentlich auch nur die Startseite halbwegs aussieht wie das WBB3 zeige ich euch ein erste Resultat.<br />
<br />
Die Buttons mache ich noch, die Suche oben auch.<br />
Threadansicht, Themenansicht, Suchansicht und was weiß ich kommt auch noch.<br />
<br />
Leider keine Live Demo (zur Zeit) weil ich nicht weiß wie das Lizenztechnisch aussieht.<br />
Werde mich da mal an woltlab wenden.<br />
<br />
Sagt mal was zu meinem nachgebauten Style <img src="https://net-board.net/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
<br />
<br />
Gruß Pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1500" target="_blank" title="">1beta.jpg</a> (Größe: 99,24 KB / Downloads: 1558)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Multiedit für WBBlite]]></title>
			<link>https://net-board.net/showthread.php?tid=5574</link>
			<pubDate>Tue, 22 May 2007 16:55:35 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=1">pattex</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5574</guid>
			<description><![CDATA[Da ich auf <a href="http://muell.de.hm" target="_blank" rel="noopener" class="mycode_url">muell.de.hm</a> leider sehr mit Spam zu kämpfen habe gibt es nun den Multiedit Hack auch für das WBBlite.<br />
<br />
Von den Funktionen kann er das selbe wie auch schon der für das WBB1 (<a href="http://netboard.sunsonic.de/wbboard/thread.php?threadid=5881" target="_blank" rel="noopener" class="mycode_url">http://netboard.sunsonic.de/wbboard/thre...eadid=5881</a>)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Voraussetzung:</span> Aktiviertes JavaScript da ich recht viel mit JavaScript und Ajax gemacht habe. Eine extra Version für alle JavaScript Verweigerer gibt es nicht ;-) Die markierten Beiträge gelten nur für eine Seite.<br />
<br />
<br />
Zum Einbau:<br />
1.) Lade alle Dateien wie sie im Anhang zu finden sind in der selben Ordnung auf deinen Webserver<br />
<br />
2.) .php Dateien ändern:<br />
######### board.php ##########<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>WHERE bb".&#36;n."_threads.threadid IN (0&#36;announceids&#36;threadids)<br />
ORDER BY important DESC, &#36;sortfield &#36;sortorder");</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">Füge darunter ein:</span><br />
include("multiedit.php");<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>eval ("&#92;&#36;threadbit .= &#92;"".&#36;tpl-&gt;get("board_threadbit")."&#92;";");</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">und ersetze es mit:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(isset(&#36;multiedit)){<br />
eval ("&#92;&#36;threadbit .= &#92;"".&#36;tpl-&gt;get("board_threadbit_admin")."&#92;";");<br />
}else{<br />
eval ("&#92;&#36;threadbit .= &#92;"".&#36;tpl-&gt;get("board_threadbit")."&#92;";");<br />
}</code></div></div><br />
3.) Templates ändern:<br />
########## board.tpl ##########<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;script language="Javascript"&gt;<br />
&lt;!--<br />
function who(threadid) {<br />
window.open("misc.php?action=whoposted&amp;threadid="+threadid+"&amp;sid=&#36;session[hash]", "moo", "toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300");<br />
}<br />
//--&gt;<br />
&lt;/script&gt;</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">füge darunter ein:</span><br />
&lt;script src="ajax.js"&gt;&lt;/script&gt;<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
&#36;subboards<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Füge darunter ein:</span><br />
&#36;multiedit_warning<br />
&lt;form action="board.php?boardid=&#36;_GET[boardid]" name="multiform" method="post"&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
&lt;td align="center" colspan=3&gt;&lt;smallfont color="{fontcolorsecond}"&gt;&lt;b&gt;Thema&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Ersetze es durch:</span><br />
&lt;td align="center" colspan=&#36;multiedit_col&gt;&lt;smallfont color="{fontcolorsecond}"&gt;&lt;b&gt;Thema&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;option value="1000" &#36;d_select[1000]&gt;von Anfang an&lt;/option&gt;<br />
&lt;/select&gt;<br />
&lt;input src="{imagefolder}/go.gif" type="image" border=0&gt;&lt;/font&gt;&lt;/td&gt;</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">füge dahinter ein:</span> &#36;fehlendes_td<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
 &#36;threadbit<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Füge darunter ein:</span><br />
&lt;/form&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
&lt;td align="right" valign="bottom"&gt;&#36;newthread&lt;/td&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Füge davor ein:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td align="left" valign="bottom"&gt;<br />
&lt;table border=0&gt;&lt;tr&gt;&lt;td&gt;&#36;markall&lt;/td&gt;&lt;td&gt;<br />
&lt;div id="multidiv"&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;<br />
&lt;/td&gt;</code></div></div><br />
Demo und Screenshots hier: <a href="http://netboard.sunsonic.de/wbboard/thread.php?threadid=5881" target="_blank" rel="noopener" class="mycode_url">http://netboard.sunsonic.de/wbboard/thre...eadid=5881</a><br />
Viel Spaß, bin sehr froh über Rückmeldungen <img src="https://net-board.net/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Gruß Pattex<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Zusätzlich im Anhang:</span> Eine multiedit.php mit allen gemachten Änderungen und register_globals=off kompatibel. Einfach die alte ersetzen.<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1489" target="_blank" title="">multiedit_fuer_wbblite.zip</a> (Größe: 3,53 KB / Downloads: 563)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1490" target="_blank" title="">multiedit.php.zip</a> (Größe: 1,42 KB / Downloads: 547)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Da ich auf <a href="http://muell.de.hm" target="_blank" rel="noopener" class="mycode_url">muell.de.hm</a> leider sehr mit Spam zu kämpfen habe gibt es nun den Multiedit Hack auch für das WBBlite.<br />
<br />
Von den Funktionen kann er das selbe wie auch schon der für das WBB1 (<a href="http://netboard.sunsonic.de/wbboard/thread.php?threadid=5881" target="_blank" rel="noopener" class="mycode_url">http://netboard.sunsonic.de/wbboard/thre...eadid=5881</a>)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Voraussetzung:</span> Aktiviertes JavaScript da ich recht viel mit JavaScript und Ajax gemacht habe. Eine extra Version für alle JavaScript Verweigerer gibt es nicht ;-) Die markierten Beiträge gelten nur für eine Seite.<br />
<br />
<br />
Zum Einbau:<br />
1.) Lade alle Dateien wie sie im Anhang zu finden sind in der selben Ordnung auf deinen Webserver<br />
<br />
2.) .php Dateien ändern:<br />
######### board.php ##########<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>WHERE bb".&#36;n."_threads.threadid IN (0&#36;announceids&#36;threadids)<br />
ORDER BY important DESC, &#36;sortfield &#36;sortorder");</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">Füge darunter ein:</span><br />
include("multiedit.php");<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>eval ("&#92;&#36;threadbit .= &#92;"".&#36;tpl-&gt;get("board_threadbit")."&#92;";");</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">und ersetze es mit:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(isset(&#36;multiedit)){<br />
eval ("&#92;&#36;threadbit .= &#92;"".&#36;tpl-&gt;get("board_threadbit_admin")."&#92;";");<br />
}else{<br />
eval ("&#92;&#36;threadbit .= &#92;"".&#36;tpl-&gt;get("board_threadbit")."&#92;";");<br />
}</code></div></div><br />
3.) Templates ändern:<br />
########## board.tpl ##########<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;script language="Javascript"&gt;<br />
&lt;!--<br />
function who(threadid) {<br />
window.open("misc.php?action=whoposted&amp;threadid="+threadid+"&amp;sid=&#36;session[hash]", "moo", "toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300");<br />
}<br />
//--&gt;<br />
&lt;/script&gt;</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">füge darunter ein:</span><br />
&lt;script src="ajax.js"&gt;&lt;/script&gt;<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
&#36;subboards<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Füge darunter ein:</span><br />
&#36;multiedit_warning<br />
&lt;form action="board.php?boardid=&#36;_GET[boardid]" name="multiform" method="post"&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
&lt;td align="center" colspan=3&gt;&lt;smallfont color="{fontcolorsecond}"&gt;&lt;b&gt;Thema&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Ersetze es durch:</span><br />
&lt;td align="center" colspan=&#36;multiedit_col&gt;&lt;smallfont color="{fontcolorsecond}"&gt;&lt;b&gt;Thema&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;option value="1000" &#36;d_select[1000]&gt;von Anfang an&lt;/option&gt;<br />
&lt;/select&gt;<br />
&lt;input src="{imagefolder}/go.gif" type="image" border=0&gt;&lt;/font&gt;&lt;/td&gt;</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">füge dahinter ein:</span> &#36;fehlendes_td<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
 &#36;threadbit<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Füge darunter ein:</span><br />
&lt;/form&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span><br />
&lt;td align="right" valign="bottom"&gt;&#36;newthread&lt;/td&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Füge davor ein:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;td align="left" valign="bottom"&gt;<br />
&lt;table border=0&gt;&lt;tr&gt;&lt;td&gt;&#36;markall&lt;/td&gt;&lt;td&gt;<br />
&lt;div id="multidiv"&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;<br />
&lt;/td&gt;</code></div></div><br />
Demo und Screenshots hier: <a href="http://netboard.sunsonic.de/wbboard/thread.php?threadid=5881" target="_blank" rel="noopener" class="mycode_url">http://netboard.sunsonic.de/wbboard/thre...eadid=5881</a><br />
Viel Spaß, bin sehr froh über Rückmeldungen <img src="https://net-board.net/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Gruß Pattex<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Zusätzlich im Anhang:</span> Eine multiedit.php mit allen gemachten Änderungen und register_globals=off kompatibel. Einfach die alte ersetzen.<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1489" target="_blank" title="">multiedit_fuer_wbblite.zip</a> (Größe: 3,53 KB / Downloads: 563)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1490" target="_blank" title="">multiedit.php.zip</a> (Größe: 1,42 KB / Downloads: 547)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Multiedit für WBB1]]></title>
			<link>https://net-board.net/showthread.php?tid=5565</link>
			<pubDate>Tue, 15 May 2007 22:17:14 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=1">pattex</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5565</guid>
			<description><![CDATA[So, habe mich dran gesetzt und eine Massenbearbeitung für das WBB1.1.1c geschrieben. Ich hoffe die eine Person die dieses Script nutzen kann freut sich darüber. <img src="https://net-board.net/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
<br />
Vor dem Einbau auf alle Fälle ein Backup machen oder lokal testen! Kann sein, dass ich bei der Anleitung eine Kleinigkeit vergessen habe weil es recht viele Änderungen sind.<br />
<br />
Was kann das Script?<br />
Auf der Threadübersicht (siehe Screenshot) sind nun nebenden Themen Checkboxen mit denen man pro Seite alle bzw. einzelne Beiträge auswählen kann. Diese kann man dann verschieben, löschen, öffnen und schließen. Durchaus beliebig erweiterbar nur fehlt mir dazu die Zeit.<br />
<br />
Voraussetzung: Aktiviertes JavaScript da ich recht viel mit JavaScript und Ajax gemacht habe. Eine extra Version für alle JavaScript Verweigerer gibt es nicht ;-) Die markierten Beiträge gelten nur für eine Seite. <br />
<br />
<br />
Zum Einbau:<br />
1.) Lade alle Dateien wie sie im Anhang zu finden sind in der selben Ordnung auf deinen Webserver<br />
<br />
2.) .php Dateien ändern:<br />
######### board.php ##########<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span> &#36;pages=ceil(&#36;anzahl/&#36;tproseite);<br />
<br />
und füge darunter ein:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>// #################### Multiedit ##################### //<br />
include("multiedit.php");</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span> 	eval ("\&#36;board_threadbit .= \"".gettemplate("board_threadbit")."\";");<br />
<br />
<span style="font-weight: bold;" class="mycode_b">ersetze es mit:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(isset(&#36;multiedit)){<br />
&nbsp;&nbsp;&nbsp;&nbsp;eval ("&#92;&#36;board_threadbit .= &#92;"".gettemplate("board_threadbit_admin")."&#92;";");<br />
}else{<br />
&nbsp;&nbsp;&nbsp;&nbsp;eval ("&#92;&#36;board_threadbit .= &#92;"".gettemplate("board_threadbit")."&#92;";");<br />
}</code></div></div><br />
3.) Templates ändern:<br />
########## board.htm ##########<br />
<span style="font-weight: bold;" class="mycode_b">Suche: </span>&lt;script language="Javascript"&gt;<br />
function who(threadid) {<br />
	window.open("whoposted.php?threadid="+threadid+"&amp;boardid=&#36;boardid&amp;styleid=&#36;styleid&#36;session", "moo", "toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300");<br />
}<br />
&lt;/script&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">füge darunter ein:</span><br />
&lt;script src="ajax.js"&gt;&lt;/script&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">suche:</span><br />
&#36;subboards<br />
<br />
<span style="font-weight: bold;" class="mycode_b">füge darunter ein:</span><br />
&#36;multiedit_warning<br />
&lt;form action=board.php?boardid=&#36;_GET[boardid] method=post&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">suche: </span><br />
&lt;td colspan=3 align="center"&gt;&lt;font size=1 face="{font}" color="{fontcolorsecond}"&gt;&lt;b&gt;Thema<br />
<br />
<span style="font-weight: bold;" class="mycode_b">ersetze es durch:</span><br />
&lt;td colspan=&#36;multiedit_col align="center"&gt;&lt;font size=1 face="{font}" color="{fontcolorsecond}"&gt;&lt;b&gt;Thema<br />
<span style="font-weight: bold;" class="mycode_b"><br />
suche:</span><br />
&lt;/tr&gt;&#36;board_threadbit<br />
                &lt;/table&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">füge darunter ein (und entferne das &lt;br&gt; hinter dem &lt;/table&gt;:</span><br />
&lt;div id="multidiv1" align="left" style="display:block;"&gt;<br />
&lt;table border=0&gt;&lt;tr&gt;&lt;td&gt;&#36;markall&lt;/td&gt;&lt;td&gt;<br />
&lt;div id="multidiv"&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;<br />
<br />
&lt;/div&gt;<br />
&lt;/form&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Demolink</span> <a href="http://forencheck-demos.sunsonic.de/demos/woltlab/wbb1.1.1c/" target="_blank" rel="noopener" class="mycode_url">http://forencheck-demos.sunsonic.de/demo...wbb1.1.1c/</a><br />
(mit Adminrechten einsehbar)<br />
<br />
Das müsste es schon gewesen sein. Wenn was fehlt melde ich mich. <br />
<br />
Gruß Pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1485" target="_blank" title="">screenshot_multiedit2.jpg</a> (Größe: 61,9 KB / Downloads: 655)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1486" target="_blank" title="">screenshot_multiedit.jpg</a> (Größe: 31,5 KB / Downloads: 636)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1487" target="_blank" title="">multiedit.zip</a> (Größe: 3,59 KB / Downloads: 337)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[So, habe mich dran gesetzt und eine Massenbearbeitung für das WBB1.1.1c geschrieben. Ich hoffe die eine Person die dieses Script nutzen kann freut sich darüber. <img src="https://net-board.net/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /><br />
<br />
Vor dem Einbau auf alle Fälle ein Backup machen oder lokal testen! Kann sein, dass ich bei der Anleitung eine Kleinigkeit vergessen habe weil es recht viele Änderungen sind.<br />
<br />
Was kann das Script?<br />
Auf der Threadübersicht (siehe Screenshot) sind nun nebenden Themen Checkboxen mit denen man pro Seite alle bzw. einzelne Beiträge auswählen kann. Diese kann man dann verschieben, löschen, öffnen und schließen. Durchaus beliebig erweiterbar nur fehlt mir dazu die Zeit.<br />
<br />
Voraussetzung: Aktiviertes JavaScript da ich recht viel mit JavaScript und Ajax gemacht habe. Eine extra Version für alle JavaScript Verweigerer gibt es nicht ;-) Die markierten Beiträge gelten nur für eine Seite. <br />
<br />
<br />
Zum Einbau:<br />
1.) Lade alle Dateien wie sie im Anhang zu finden sind in der selben Ordnung auf deinen Webserver<br />
<br />
2.) .php Dateien ändern:<br />
######### board.php ##########<br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span> &#36;pages=ceil(&#36;anzahl/&#36;tproseite);<br />
<br />
und füge darunter ein:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>// #################### Multiedit ##################### //<br />
include("multiedit.php");</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">Suche:</span> 	eval ("\&#36;board_threadbit .= \"".gettemplate("board_threadbit")."\";");<br />
<br />
<span style="font-weight: bold;" class="mycode_b">ersetze es mit:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if(isset(&#36;multiedit)){<br />
&nbsp;&nbsp;&nbsp;&nbsp;eval ("&#92;&#36;board_threadbit .= &#92;"".gettemplate("board_threadbit_admin")."&#92;";");<br />
}else{<br />
&nbsp;&nbsp;&nbsp;&nbsp;eval ("&#92;&#36;board_threadbit .= &#92;"".gettemplate("board_threadbit")."&#92;";");<br />
}</code></div></div><br />
3.) Templates ändern:<br />
########## board.htm ##########<br />
<span style="font-weight: bold;" class="mycode_b">Suche: </span>&lt;script language="Javascript"&gt;<br />
function who(threadid) {<br />
	window.open("whoposted.php?threadid="+threadid+"&amp;boardid=&#36;boardid&amp;styleid=&#36;styleid&#36;session", "moo", "toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300");<br />
}<br />
&lt;/script&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">füge darunter ein:</span><br />
&lt;script src="ajax.js"&gt;&lt;/script&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">suche:</span><br />
&#36;subboards<br />
<br />
<span style="font-weight: bold;" class="mycode_b">füge darunter ein:</span><br />
&#36;multiedit_warning<br />
&lt;form action=board.php?boardid=&#36;_GET[boardid] method=post&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">suche: </span><br />
&lt;td colspan=3 align="center"&gt;&lt;font size=1 face="{font}" color="{fontcolorsecond}"&gt;&lt;b&gt;Thema<br />
<br />
<span style="font-weight: bold;" class="mycode_b">ersetze es durch:</span><br />
&lt;td colspan=&#36;multiedit_col align="center"&gt;&lt;font size=1 face="{font}" color="{fontcolorsecond}"&gt;&lt;b&gt;Thema<br />
<span style="font-weight: bold;" class="mycode_b"><br />
suche:</span><br />
&lt;/tr&gt;&#36;board_threadbit<br />
                &lt;/table&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">füge darunter ein (und entferne das &lt;br&gt; hinter dem &lt;/table&gt;:</span><br />
&lt;div id="multidiv1" align="left" style="display:block;"&gt;<br />
&lt;table border=0&gt;&lt;tr&gt;&lt;td&gt;&#36;markall&lt;/td&gt;&lt;td&gt;<br />
&lt;div id="multidiv"&gt;<br />
&lt;/div&gt;<br />
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;<br />
<br />
&lt;/div&gt;<br />
&lt;/form&gt;<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Demolink</span> <a href="http://forencheck-demos.sunsonic.de/demos/woltlab/wbb1.1.1c/" target="_blank" rel="noopener" class="mycode_url">http://forencheck-demos.sunsonic.de/demo...wbb1.1.1c/</a><br />
(mit Adminrechten einsehbar)<br />
<br />
Das müsste es schon gewesen sein. Wenn was fehlt melde ich mich. <br />
<br />
Gruß Pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1485" target="_blank" title="">screenshot_multiedit2.jpg</a> (Größe: 61,9 KB / Downloads: 655)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1486" target="_blank" title="">screenshot_multiedit.jpg</a> (Größe: 31,5 KB / Downloads: 636)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1487" target="_blank" title="">multiedit.zip</a> (Größe: 3,59 KB / Downloads: 337)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[RSS Feed im WBB1]]></title>
			<link>https://net-board.net/showthread.php?tid=5523</link>
			<pubDate>Fri, 16 Mar 2007 00:58:34 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=0">cHAp</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5523</guid>
			<description><![CDATA[Hallo,<br />
<br />
mal eine Frage, gibt es auch ein RSS Feed fürs WBB1.1.1c ? Hab bisher nur eins auf mywbb.de für das wbb1.2 lite gefunden... :-(<br />
<br />
Lg cHAp]]></description>
			<content:encoded><![CDATA[Hallo,<br />
<br />
mal eine Frage, gibt es auch ein RSS Feed fürs WBB1.1.1c ? Hab bisher nur eins auf mywbb.de für das wbb1.2 lite gefunden... :-(<br />
<br />
Lg cHAp]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[WBB1 Beitrag auf externer Seite auslesen]]></title>
			<link>https://net-board.net/showthread.php?tid=5419</link>
			<pubDate>Wed, 26 Jul 2006 00:14:12 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=1">pattex</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5419</guid>
			<description><![CDATA[Das ganze klingt kompliziert, ist es aber ganz und gar nicht. Mit dieser einen Datei (im Anhang) ist es möglich, aus einer bestimmten Kategorie deines WBB1.1.1c's X Beiträge auszulesen.<br />
<br />
Dies funktioniert aber auch, wenn dein Board nicht auf dem selben Server liegt. Es muss nur möglich sein extern zu dieser MySQL Datenbank zu connecten.<br />
<br />
Ändern musst du nur folgenden Abschnitt:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;&#36;mysqlhost = "localhost";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;mysqluser = "NUTZERNAME";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;mysqlpassword = "NUTZERPW";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Name der Datenbank<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;mysqldb = "DATENBANK DES FORUMS";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Nummer des Boards<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;n = "1";<br />
<br />
<br />
// Daten fürs Forum<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Nummer der Kategorie<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;fn = "1";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// URL zum Board ohne / am Ende<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;url = "http://foren.sunsonic.de/WBB1.1.1c";</code></div></div><br />
Oben die MySQL Daten zum Forum, danach die Boardnnumer (also bbX_) und anschließend noch die Kategorie, die du auslesen möchtest sowie den Link zum Forum.<br />
<br />
Die Datei dann einfach auf deinen Webserver laden und z.b. per include in deine Homepage einbinden.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Auf Nachfrage sind noch folgende Varianten möglich:</span><br />
- Anpassung des Scriptes an: WBB1.2, WBB lite, WBB2.*<br />
- Auslesen des ganzen Forums<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Demo:</span> Cliff, ein User des Netboards, nutzt dieses Script auf seiner Seite. Z.b. hier: <a href="http://www.boardseven.net/index.php?show=portal/newsflash/index" target="_blank" rel="noopener" class="mycode_url">http://www.boardseven.net/index.php?show...lash/index</a><br />
<br />
<br />
Viel Spaß mit diesem kleinen Script.<br />
<br />
euer Pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1355" target="_blank" title="">beitragauslesen.zip</a> (Größe: 822 Bytes / Downloads: 315)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Das ganze klingt kompliziert, ist es aber ganz und gar nicht. Mit dieser einen Datei (im Anhang) ist es möglich, aus einer bestimmten Kategorie deines WBB1.1.1c's X Beiträge auszulesen.<br />
<br />
Dies funktioniert aber auch, wenn dein Board nicht auf dem selben Server liegt. Es muss nur möglich sein extern zu dieser MySQL Datenbank zu connecten.<br />
<br />
Ändern musst du nur folgenden Abschnitt:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&nbsp;&nbsp;&nbsp;&nbsp;&#36;mysqlhost = "localhost";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;mysqluser = "NUTZERNAME";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;mysqlpassword = "NUTZERPW";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Name der Datenbank<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;mysqldb = "DATENBANK DES FORUMS";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Nummer des Boards<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;n = "1";<br />
<br />
<br />
// Daten fürs Forum<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Nummer der Kategorie<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;fn = "1";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// URL zum Board ohne / am Ende<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#36;url = "http://foren.sunsonic.de/WBB1.1.1c";</code></div></div><br />
Oben die MySQL Daten zum Forum, danach die Boardnnumer (also bbX_) und anschließend noch die Kategorie, die du auslesen möchtest sowie den Link zum Forum.<br />
<br />
Die Datei dann einfach auf deinen Webserver laden und z.b. per include in deine Homepage einbinden.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Auf Nachfrage sind noch folgende Varianten möglich:</span><br />
- Anpassung des Scriptes an: WBB1.2, WBB lite, WBB2.*<br />
- Auslesen des ganzen Forums<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Demo:</span> Cliff, ein User des Netboards, nutzt dieses Script auf seiner Seite. Z.b. hier: <a href="http://www.boardseven.net/index.php?show=portal/newsflash/index" target="_blank" rel="noopener" class="mycode_url">http://www.boardseven.net/index.php?show...lash/index</a><br />
<br />
<br />
Viel Spaß mit diesem kleinen Script.<br />
<br />
euer Pattex<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://net-board.net/images/attachtypes/zip.png" title="ZIP File" border="0" alt=".zip" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=1355" target="_blank" title="">beitragauslesen.zip</a> (Größe: 822 Bytes / Downloads: 315)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Einfacher Spamschutz für das WBB2.3.5]]></title>
			<link>https://net-board.net/showthread.php?tid=5413</link>
			<pubDate>Tue, 18 Jul 2006 23:06:50 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://net-board.net/member.php?action=profile&uid=1">pattex</a>]]></dc:creator>
			<guid isPermaLink="false">https://net-board.net/showthread.php?tid=5413</guid>
			<description><![CDATA[Guten Abend liebe Besucher des Netboards,<br />
<br />
und wieder eine Nachricht bezüglich Spamschutz. Da ich bisher wirklich gute Erfahrungen mit dem Spamschutz in der WIW Shoutbox gemacht habe, gibt es diesen nun auch für das WBB2.3.5.<br />
<br />
Eins sollte natürlich klar sein: Das System bietet sicherlich keinen 100% Schutz gegen Spam. Aber es kann ihn zumindest teilweise verhindern. Zusätzlich ist es einfacher als ein Sicherheitscode der, besonders beim Schreiben von Beiträgen den ein oder anderen stören könnte.<br />
<br />
Nun noch ein Hinweis was dieser Spamschutz macht: Gäste müssen, bevor sie einen Beitrag schreiben können, einen Kasten aktivieren. Also ähnlich wie in der Shoutbox. User müssen dies natürlich nicht. Für sie ist also dieses Feld nicht sichtbar. Ich denke Donnerstag oder Freitag baue ich den Spamschutz dann auch hier im Board ein.<br />
<br />
<br />
Nun zum Einbau: <br />
Sicherung der Templates: <span style="font-weight: bold;" class="mycode_b">addreply</span> und <span style="font-weight: bold;" class="mycode_b">newthread</span> machen.<br />
Sicherung der Dateien: <span style="font-weight: bold;" class="mycode_b">addreply.php</span> und <span style="font-weight: bold;" class="mycode_b">newthread.php</span> machen.<br />
<br />
1. Öffne das Template <span style="font-weight: bold;" class="mycode_b">addreply</span> und suche folgendes:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;input class="input" type="submit" accesskey="S" value="{&#36;lang-&gt;items['LANG_POST_REPLY']}" /&gt;</code></div></div>Füge <span style="font-weight: bold;" class="mycode_b">darüber</span> ein:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;if(!&#36;wbbuserdata['userid'])&gt;<br />
&lt;then&gt;<br />
 &lt;input class="input" type="submit" disabled value="Eintrag bestätigen:" /&gt;<br />
&lt;input type="checkbox" class="input" name="CheckEntry1" value="1"&gt;<br />
&lt;/then&gt;&lt;else&gt;<br />
&lt;input type="hidden" class="input" name="CheckEntry1" value="1" checked&gt;<br />
&lt;/else&gt;<br />
&lt;/if&gt;</code></div></div><br />
2. Öffne das Template <span style="font-weight: bold;" class="mycode_b">newthread</span> und suche folgendes:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;input class="input" type="submit" accesskey="S" value="{&#36;lang-&gt;items['LANG_POST_NEWTHREAD']}" /&gt;</code></div></div>Füge <span style="font-weight: bold;" class="mycode_b">darüber</span> ein:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;if(!&#36;wbbuserdata['userid'])&gt;<br />
&lt;then&gt;<br />
 &lt;input class="input" type="submit" disabled value="Eintrag bestätigen:" /&gt;<br />
&lt;input type="checkbox" class="input" name="CheckEntry" value="1"&gt;<br />
&lt;/then&gt;&lt;else&gt;<br />
&lt;input type="hidden" class="input" name="CheckEntry" value="1" checked&gt;<br />
&lt;/else&gt;<br />
&lt;/if&gt;</code></div></div><br />
<br />
3. Öffne die Datei <span style="font-weight: bold;" class="mycode_b">addreply.php</span> und suche folgendes:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if (!&#36;message) &#36;error .= &#36;lang-&gt;items['LANG_POSTINGS_ERROR1'];</code></div></div><span style="font-weight: bold;" class="mycode_b">ersetze</span> es mit:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if (!&#36;message || !&#36;_REQUEST[CheckEntry1]) &#36;error .= &#36;lang-&gt;items['LANG_POSTINGS_ERROR1'];</code></div></div><br />
4. Öffne die Datei <span style="font-weight: bold;" class="mycode_b">newthread.php</span> und suche folgendes:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if (!&#36;topic || !&#36;message || (&#36;board['prefixuse'] &gt; 0 &amp;&amp; checkpermissions('can_use_prefix') &amp;&amp; &#36;board['prefixrequired'] == 1 &amp;&amp; !&#36;prefix)) &#36;error .= &#36;lang-&gt;items['LANG_POSTINGS_ERROR1'];</code></div></div><span style="font-weight: bold;" class="mycode_b">ersetze</span> es mit:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if (!&#36;topic || !&#36;_REQUEST[CheckEntry] || !&#36;message || (&#36;board['prefixuse'] &gt; 0 &amp;&amp; checkpermissions('can_use_prefix') &amp;&amp; &#36;board['prefixrequired'] == 1 &amp;&amp; !&#36;prefix)) &#36;error .= &#36;lang-&gt;items['LANG_POSTINGS_ERROR1'];</code></div></div><br />
<br />
Das wars schon, hoffentlich habe ich nichts vergessen. Ich übernehme keine Haftung für Schäden, die durch diese Änderung entstanden sind. Am besten immer Backups machen! <br />
<br />
Fragen einfach in diesen Thread schreiben. Ich würde mich über eure Erfahrung mit diesem Script freuen.<br />
<br />
Danke,<br />
euer Pattex]]></description>
			<content:encoded><![CDATA[Guten Abend liebe Besucher des Netboards,<br />
<br />
und wieder eine Nachricht bezüglich Spamschutz. Da ich bisher wirklich gute Erfahrungen mit dem Spamschutz in der WIW Shoutbox gemacht habe, gibt es diesen nun auch für das WBB2.3.5.<br />
<br />
Eins sollte natürlich klar sein: Das System bietet sicherlich keinen 100% Schutz gegen Spam. Aber es kann ihn zumindest teilweise verhindern. Zusätzlich ist es einfacher als ein Sicherheitscode der, besonders beim Schreiben von Beiträgen den ein oder anderen stören könnte.<br />
<br />
Nun noch ein Hinweis was dieser Spamschutz macht: Gäste müssen, bevor sie einen Beitrag schreiben können, einen Kasten aktivieren. Also ähnlich wie in der Shoutbox. User müssen dies natürlich nicht. Für sie ist also dieses Feld nicht sichtbar. Ich denke Donnerstag oder Freitag baue ich den Spamschutz dann auch hier im Board ein.<br />
<br />
<br />
Nun zum Einbau: <br />
Sicherung der Templates: <span style="font-weight: bold;" class="mycode_b">addreply</span> und <span style="font-weight: bold;" class="mycode_b">newthread</span> machen.<br />
Sicherung der Dateien: <span style="font-weight: bold;" class="mycode_b">addreply.php</span> und <span style="font-weight: bold;" class="mycode_b">newthread.php</span> machen.<br />
<br />
1. Öffne das Template <span style="font-weight: bold;" class="mycode_b">addreply</span> und suche folgendes:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;input class="input" type="submit" accesskey="S" value="{&#36;lang-&gt;items['LANG_POST_REPLY']}" /&gt;</code></div></div>Füge <span style="font-weight: bold;" class="mycode_b">darüber</span> ein:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;if(!&#36;wbbuserdata['userid'])&gt;<br />
&lt;then&gt;<br />
 &lt;input class="input" type="submit" disabled value="Eintrag bestätigen:" /&gt;<br />
&lt;input type="checkbox" class="input" name="CheckEntry1" value="1"&gt;<br />
&lt;/then&gt;&lt;else&gt;<br />
&lt;input type="hidden" class="input" name="CheckEntry1" value="1" checked&gt;<br />
&lt;/else&gt;<br />
&lt;/if&gt;</code></div></div><br />
2. Öffne das Template <span style="font-weight: bold;" class="mycode_b">newthread</span> und suche folgendes:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;input class="input" type="submit" accesskey="S" value="{&#36;lang-&gt;items['LANG_POST_NEWTHREAD']}" /&gt;</code></div></div>Füge <span style="font-weight: bold;" class="mycode_b">darüber</span> ein:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;if(!&#36;wbbuserdata['userid'])&gt;<br />
&lt;then&gt;<br />
 &lt;input class="input" type="submit" disabled value="Eintrag bestätigen:" /&gt;<br />
&lt;input type="checkbox" class="input" name="CheckEntry" value="1"&gt;<br />
&lt;/then&gt;&lt;else&gt;<br />
&lt;input type="hidden" class="input" name="CheckEntry" value="1" checked&gt;<br />
&lt;/else&gt;<br />
&lt;/if&gt;</code></div></div><br />
<br />
3. Öffne die Datei <span style="font-weight: bold;" class="mycode_b">addreply.php</span> und suche folgendes:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if (!&#36;message) &#36;error .= &#36;lang-&gt;items['LANG_POSTINGS_ERROR1'];</code></div></div><span style="font-weight: bold;" class="mycode_b">ersetze</span> es mit:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if (!&#36;message || !&#36;_REQUEST[CheckEntry1]) &#36;error .= &#36;lang-&gt;items['LANG_POSTINGS_ERROR1'];</code></div></div><br />
4. Öffne die Datei <span style="font-weight: bold;" class="mycode_b">newthread.php</span> und suche folgendes:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if (!&#36;topic || !&#36;message || (&#36;board['prefixuse'] &gt; 0 &amp;&amp; checkpermissions('can_use_prefix') &amp;&amp; &#36;board['prefixrequired'] == 1 &amp;&amp; !&#36;prefix)) &#36;error .= &#36;lang-&gt;items['LANG_POSTINGS_ERROR1'];</code></div></div><span style="font-weight: bold;" class="mycode_b">ersetze</span> es mit:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>if (!&#36;topic || !&#36;_REQUEST[CheckEntry] || !&#36;message || (&#36;board['prefixuse'] &gt; 0 &amp;&amp; checkpermissions('can_use_prefix') &amp;&amp; &#36;board['prefixrequired'] == 1 &amp;&amp; !&#36;prefix)) &#36;error .= &#36;lang-&gt;items['LANG_POSTINGS_ERROR1'];</code></div></div><br />
<br />
Das wars schon, hoffentlich habe ich nichts vergessen. Ich übernehme keine Haftung für Schäden, die durch diese Änderung entstanden sind. Am besten immer Backups machen! <br />
<br />
Fragen einfach in diesen Thread schreiben. Ich würde mich über eure Erfahrung mit diesem Script freuen.<br />
<br />
Danke,<br />
euer Pattex]]></content:encoded>
		</item>
	</channel>
</rss>