MyBB.de Forum

Normale Version: Onlineliste
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Seiten: 1 2
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
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
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
Ich habe deinen Code etwas verbessert. Was hast du denn jetzt wo eingefügt?
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}
Hast du mal den von mir geänderten Code probiert?
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.
Nirgends steht http://germanen.redio.de/chat.php. Hast du doch nicht den Code hier reingestellt, den du benutzt?
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
Seiten: 1 2