MyBB.de Forum
Shoutbox - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Veröffentlichungen und -Support (https://www.mybb.de/forum/forum-82.html)
+--- Thema: Shoutbox (/thread-19110.html)

Seiten: Seiten: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19


RE: Shoutbox 2.0 - Domic - 17.02.2009

(26.12.2006, 13:35)Schumuckl schrieb: Zeit und Datum einfügen:

suche:
Code:
                $bgcolor = alt_trow();
                eval("$multipage_top = "".$templates->get('shoutbox_multipage')."";");
            }
            
            while($shout = $db->fetch_array($query))
            {

füge danach ein:
Code:
$shout_date = my_date($mybb->settings['dateformat'], $shout['dateline']);
$shout_time = my_date($mybb->settings['timeformat'], $shout['dateline']);

suche:
Code:
$shout['username'] = format_name($shout['username'], $shout['usergroup'], $shout['displaygroup']);
$shout['username'] =  '<<a href="member.php?action=profile&uid='.intval($shout['uid']).'">'.$shout['username'].'</a>>&nbsp;';

ersetzte mit:
Code:
$shout['username'] = format_name($shout['username'], $shout['usergroup'], $shout['displaygroup']);
$shout['username'] = $shout_date . ' ' . $shout_time . ' ' . '&nbsp;<a href="member.php?action=profile&uid='.intval($shout['uid']).'" target="_top">'.$shout['username'].'</a>&nbsp;';

Leider finde ich die Sachen nicht, hat sich etwas geändert?


RE: Shoutbox 2.2 - Grauer-Magier - 17.02.2009

Hi, Domic!

Ja, aber das is hier der falsche Thread dafür. ;-)
Ich vermute mal du verwendest MyBB 1.4 - schau hier: https://www.mybb.de/forum/thread-20492.html
Hatte das Problem aber auch, dass der Code sich ein bißchen verändert hat. Schau einfach nochmal genau im Code nach, dann findest du die Stellen die geändert werden müssen.

LG, GM!


RE: Shoutbox 2.2 - destructive - 08.03.2009

Hi habe folgendes Problem, habe das plugin installiert und meine php seite angepasst, nun kommt da:
Direct initialization of this file is not allowed.

Please make sure IN_MYBB is defined.

Was mache ich falsch?


RE: Shoutbox 2.2 - Megaleecher - 08.03.2009

Was für anpassungen hast du an welcher php-Datei gemacht??

Der Fehler kommt nur dann, wenn du versuchst die Plugin-Datei direkt aufzurufen.

MfG Megaleecher


RE: Shoutbox 2.2 - destructive - 08.03.2009

Ja ich hab anstatt shoutbox.php habe ich die komplette url eingegeben! Da er sonst es nicht finden würde! kommt dann: seite nicht gefunden!

Also quasie:

<iframe src="shoutbox.php"

habe ich eingegeben>:
<iframe src="http://www.website wo ich halt bin /shoutbox.php"

Also da wo die Datei liegt! Ist das falsch? wenn ja wie dann?


RE: Shoutbox 2.2 - Megaleecher - 08.03.2009

Führe die mal diese Tutorial zu Gemüte und wenn dann noch immer Fragen offen sind, dann darfst du sie hier stellen Wink

https://www.mybb.de/doku/screencasts/wie-installiere-ich-ein-plugin.html

MfG Megaleecher


RE: Shoutbox 2.2 - StefanT - 09.03.2009

Oder: http://www.mybbcoder.info/wiki/informationen-zu-plugins.html


RE: Shoutbox 2.2 - Chaos-Community - 01.07.2009

Ich habe nun dass gleiche Problem Sad

Meine Datei befindet sich im inc/plugin Ordner, also alles wunderbar, Shoutbox wird auch per Link oben rechts angezeigt, möchte ich nun aber die Box auf die Startseite, wird gesagt, dass die Datei shoutbox.php nicht existiert, bin schon am verzweifeln, weiß jemand wo der Fehler liegen könnte ? Sad


RE: Shoutbox 2.2 - Mario4774 - 31.08.2009

Bei mir kommt im Forum wo die Shoutbox hin soll der Fehler:

Direct initialization of this file is not allowed.

Please make sure IN_MYBB is defined.

Was habe ich falsch gemacht? Huh


RE: Shoutbox 2.2 - Jockl - 31.08.2009

Hast Du die shoutbox.php in /inc/plugins abgelegt und das Plugin via ACP aktiviert bzw. installiert?