MyBB.de Forum
Onlineliste - 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: Onlineliste (/thread-14148.html)

Seiten: Seiten: 1 2


Onlineliste - cRaZyYy - 13.08.2009

PHP-Code:
<?php

include('/dbcon/config.inc.php');

include(
'/dbcon/'.$database_class);

include(
'/dbcon/init_chat_db.class.php');


$confObj = new InitChatDB($sqlhost,$sqluser,$sqlpass,$database,false);

$erg=$confObj->dbObj->sql("SELECT count(etchat_onlineid) FROM
etchat_useronline WHERE etchat_onlinetimestamp > "
.(date('U')-30),
false);

echo 
"Benutzer im Chat: ".$erg[0][0]."<br>";


$erg_user=$confObj->dbObj->sql("SELECT
etchat_user_online_user_name, etchat_user_online_user_priv FROM
etchat_useronline WHERE etchat_onlinetimestamp > "
.(date('U')-30)."
order by etchat_user_online_user_name"
false);


if(
is_array($erg_user))

    foreach(
$erg_user as $us) echo $us[0]."<br>";

else echo 
"Niemand im Chat";

?>

Hallo, ich wollte mal Fragen, wie ich das im Forum einbauen kann.
Derzeit zeigt er nämlich nur den Code an.

Ich danke euch im vorraus.
Liebe Grüße Wink


RE: Onlineliste - StefanT - 13.08.2009

https://www.mybb.de/forum/thread-6052.html


RE: Onlineliste - cRaZyYy - 13.08.2009

Redio Webhosting | PHP Fehler
Warning: include(): URL file-access is disabled in the server configuration in /Upload/chat.php on line 3
Redio Webhosting | PHP Fehler
Warning: include(/dbcon/config.inc.php): failed to open stream: no suitable wrapper could be found in /Upload/chat.php on line 3
Redio Webhosting | PHP Fehler
Warning: include(): Failed opening '/dbcon/config.inc.php' for inclusion (include_path='.:/usr/share/php') in /Upload/chat.php on line 3
Redio Webhosting | PHP Fehler
Warning: include(): URL file-access is disabled in the server configuration in /Upload/chat.php on line 5
Redio Webhosting | PHP Fehler
Warning: include(/dbcon/): failed to open stream: no suitable wrapper could be found in /Upload/chat.php on line 5
Redio Webhosting | PHP Fehler
Warning: include(): Failed opening '/dbcon/' for inclusion (include_path='.:/usr/share/php') in /Upload/chat.php on line 5
Redio Webhosting | PHP Fehler
Warning: include(): URL file-access is disabled in the server configuration in /Upload/chat.php on line 7
Redio Webhosting | PHP Fehler
Warning: include(/dbcon/init_chat_db.class.php): failed to open stream: no suitable wrapper could be found in /Upload/chat.php on line 7
Redio Webhosting | PHP Fehler
Warning: include(): Failed opening '/dbcon/init_chat_db.class.php' for inclusion (include_path='.:/usr/share/php') in /Upload/chat.php on line 7
Redio Webhosting | PHP Fehler
Fatal error: Class 'InitChatDB' not found in /Upload/chat.php on line 10


RE: Onlineliste - Megaleecher - 13.08.2009

Steht ja eh da was der Fehler ist...

Dein Webhoster hat das Zugreifen auf externe Dateien unterbunden.

Kannnst ihn ja mal fragen, ob er das ändert, aber solltest du bei einem Freehoster sein, dann seh ich wenig Hoffnung für dich...

MfG


RE: Onlineliste - StefanT - 13.08.2009

Ich habe deinen Code etwas verbessert. Was hast du denn jetzt wo eingefügt?


RE: Onlineliste - cRaZyYy - 13.08.2009

PHP-Code:
ob_start();
include(
"chat.php");
$chaton ob_get_contents();
ob_end_clean(); 

Das in der Index.php...
Und den Code von oben in der chat.php!

Im index Template: {$chaton}


RE: Onlineliste - StefanT - 13.08.2009

Hast du mal den von mir geänderten Code probiert?


RE: Onlineliste - cRaZyYy - 13.08.2009

Redio Webhosting | PHP Fehler
Warning: include(): URL file-access is disabled in the server configuration in /Upload/index.php on line 3
Redio Webhosting | PHP Fehler
Warning: include(/chat.php): failed to open stream: no suitable wrapper could be found in /Upload/index.php on line 3
Redio Webhosting | PHP Fehler
Warning: include(): Failed opening '/chat.php' for inclusion (include_path='.:/usr/share/php') in /Upload/index.php on line 3

Das sind jetzt noch die Fehler.


RE: Onlineliste - StefanT - 13.08.2009

Nirgends steht http://germanen.redio.de/chat.php. Hast du doch nicht den Code hier reingestellt, den du benutzt?


RE: Onlineliste - cRaZyYy - 13.08.2009

Ohhh...
Das /Upload/ zu vergessen ist auch ein ernstes Problem...

Ändert aber nicht viel...
http://germanen.redio.de/Upload/chat.php

Redio Webhosting | PHP Fehler
Warning: include(): URL file-access is disabled in the server configuration in /home/www-data/htdocs/g/germanen/www/Upload/index.php on line 3
Redio Webhosting | PHP Fehler
Warning: include(http://germanen.redio.de/Upload/chat.php): failed to open stream: no suitable wrapper could be found in /home/www-data/htdocs/g/germanen/www/Upload/index.php on line 3
Redio Webhosting | PHP Fehler
Warning: include(): Failed opening 'http://germanen.redio.de/Upload/chat.php' for inclusion (include_path='.:/usr/share/php') in /home/www-data/htdocs/g/germanen/www/Upload/index.php on line 3