MyBB.de Forum
Großes Problem mit Foren-Icons - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.4.x (https://www.mybb.de/forum/forum-51.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-52.html)
+---- Thema: Großes Problem mit Foren-Icons (/thread-12954.html)



Großes Problem mit Foren-Icons - Selman - 12.04.2009

Liebe Community,
habe mal wieder ein Problem.

Wollte dem Board eigene Forenicons verpassen. Habe natürlich ein Plugin installiert und aktiviert, daraufhin kam ein Error, welchen ich nicht natürlich nicht notiert habe...

Das Problem: Ich sehe keine Foren Icons mehr... Es wird nur noch ein Text angezeigt: "Forum enthält keine neuen Beiträge"...

Kann das vielleicht am Template "forumbit_depth2" liegen?

Hier der Inhalt...

Code:
<tr>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/forumicons/{$lightbulb['folder']}" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>

MyBB-Version: 1.4.4
Template: Afresh Black

www.adultgamer.de

Danke im Voraus!

MfG,
Selman


RE: Großes Problem mit Foren-Icons - Mak - 12.04.2009

Der Pfad zu den Bildern stimmt nicht, da fehlt immer das .gif am Ende. Aktivier das Plugin mal neu und poste die Fehlermeldung.


RE: Großes Problem mit Foren-Icons - Selman - 12.04.2009

Hallo,
danke für die rasche Antwort. Es handelt sich um das Plugin: http://mods.mybboard.net/view/forum-icons

Habe das Template editiert und "gif" dahintergesetzt - keine Veränderung... Sad

Error...

Code:
MyBB SQL Error

MyBB has experienced an internal SQL error and cannot continue.
SQL Error:
1060 - Duplicate column name 'icon'
Query:
ALTER TABLE mybb_forums ADD (icon text NOT NULL)

Please contact the MyBB Group for support.



RE: Großes Problem mit Foren-Icons - Mak - 12.04.2009

Hm...
Deaktivier das Plugin, und lösch per phpMyAdmin die Spalte "icon" aus der Tabelle mybb_forums. Ersetze dann dein Template "forumbit_depth2_forum" damit:
Code:
<tr>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
</tr>

Und versuch danach noch mal, das Plugin zu aktivieren.


RE: Großes Problem mit Foren-Icons - linwinman - 12.04.2009

Hallo Selman,

das Plugin (Version 1.2, 30th December 2006) ist nicht mit MyBB 1.4.x kompatibel; u. a. erwartet es die Datei "admin/forums.php", die es bis/in MyBB 1.2.x noch gab, jedoch nicht mehr in MyBB 1.4.x.


RE: Großes Problem mit Foren-Icons - Selman - 13.04.2009

Danke, hat funktioniert. Nächstes mal checke ich die Plugins, bevor ich sie voreilig installiere.