MyBB.de Forum
Chatuser im Forum sichtbar? - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Diskussionen (https://www.mybb.de/forum/forum-38.html)
+--- Thema: Chatuser im Forum sichtbar? (/thread-5595.html)

Seiten: Seiten: 1 2


RE: Chatuser im Forum sichtbar? - Alex76 - 06.07.2007

Kann man den Code einfach übernehmen oder muss man speziell fürs eigene Forum etwas ändern?

Alex


RE: Chatuser im Forum sichtbar? - Mak - 06.07.2007

Du musst
PHP-Code:
$listfile = `wget -O - http://scripts.blitzed.org/chanuserlist?...dev/null`; 
auf jeden Fall ersetzten. Frag mich nicht, womit, ich kenne dieses Script nicht.


RE: Chatuser im Forum sichtbar? - Alex76 - 06.07.2007

Warscheinlich wirds nicht gehen wenn ich einen anderen Server nutze: irc.quakenet.org


RE: Chatuser im Forum sichtbar? - Mak - 06.07.2007

Lies das mal: http://wiki.blitzed.org/Channel_user_list


RE: Chatuser im Forum sichtbar? - Katana - 05.08.2009

(22.06.2007, 01:22)Michael schrieb: Füge folgenden Code am Anfang der index.php nach dem <?php ein:
PHP-Code:
ob_start();
$listfile = `wget -O - http://scripts.blitzed.org/chanuserlist?...dev/null`;
$nicks split("\n"$listfile);
if(
count($nicks)>0)
{
echo 
"<label>Currently on the chat:</label>\n";
echo 
"<ul>\n";
foreach(
$nicks as $nickname)
if(
trim($nickname) != "")
echo 
"<li>" $nickname "</li>\n";
echo 
"</ul>\n";
$chatstats ob_get_contents();
ob_end_clean(); 

Danach kannst du die Variable {$chatstats} im gewünschten Template verwenden.

Hallo Michael,

kannst Du mir mal helfen ich habe diesen Code etwas abgewandelt eingebaut und bekomme folgende Fehlermeldung :

Warning: include() [function.include]: URL file-access is disabled in the server configuration in /var/www/web277/html/index.php on line 3

Warning: include(http://www.muchmo.net/chatstats/whoisonline.php?chan=nailfantastics) [function.include]: failed to open stream: no suitable wrapper could be found in /var/www/web277/html/index.php on line 3

Warning: include() [function.include]: Failed opening 'http://www.muchmo.net/chatstats/whoisonline.php?chan=nailfantastics' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/web277/html/index.php on line 3

Ich habe es mit diesen Code versucht
PHP-Code:
ob_start();
include
'http://www.muchmo.net/chatstats/whoisonline.php?chan=nailfantastics' ;
$chatstats ob_get_contents();
ob_end_clean(); 



RE: Chatuser im Forum sichtbar? - StefanT - 05.08.2009

Du kannst keine URL includen.


RE: Chatuser im Forum sichtbar? - Katana - 05.08.2009

(05.08.2009, 19:10)StefanT schrieb: Du kannst keine URL includen.


Wenn ich es so mache
PHP-Code:
ob_start();
$listfile = `wget -O - http://www.muchmo.net/chatstats/whoisonline.php?chan=nailfantastics`;
$chatstats ob_get_contents();
ob_end_clean(); 

Bekomme ich diese Meldung : Warning: shell_exec() has been disabled for security reasons in /var/www/web277/html/index.php on line 3

Was bedeutet das ????
Ok habe es jetzt hiermit hinbekommen Toungue
PHP-Code:
ob_start();
$listfile fopen("http://www.muchmo.net/chatstats/whoisonline.php?chan=nailfantastics""r");
echo 
"<p>The people currently on the chat:<p>\n";
echo 
"<ul>\n";
$nickname fgets($listfile);
while (
trim($nickname) != "") {
  echo 
"<li>" trim($nickname) . "</li>\n";
  
$nickname fgets($listfile);
}
echo 
"</ul>";
fclose($listfile);
$chatstats ob_get_contents();
ob_end_clean();