Kann mir<bitte jemand verraten was ich Verkehrt mache ???
Habe gerade noch mal in den Einstellungen gesehen, da steht noch ne Meldung :
Fatal error: Call to undefined function: check_infusion() in /home/p2989/html/binco2/infusions/security_system_panel/security_system_panel.php on line 11Bearbeitet von butzen-hb am 13.09.2006 18:25
der erste Fehler ist, dass dir die tabellen 'flood_control' und 'thread_notify' fehlen
Hast du nur ein Update gemacht, oder direkt die 6.01.5 installiert?
Auf jeden Fall kann ich dir da helfen.
Erstelle dir eine Eigene Seite und gib als title einen beliebigen Text ein
und als Inhalt den nachstehenden Code und gehe danach auf Vorschau.
Code
<?php
$result = dbquery("CREATE TABLE ".$db_prefix."flood_control (
flood_ip VARCHAR(20) NOT NULL DEFAULT '0.0.0.0',
flood_timestamp INT(5) UNSIGNED NOT NULL DEFAULT '0'
) TYPE=MyISAM;");
// Create new thread notify table
$result = dbquery("CREATE TABLE ".$db_prefix."thread_notify (
thread_id smallint(5) unsigned NOT NULL default '0',
notify_datestamp INT(10) UNSIGNED NOT NULL DEFAULT '0',
notify_user smallint(5) unsigned NOT NULL default '0',
notify_status tinyint(1) unsigned NOT NULL default '1'
) TYPE=MyISAM;");
?>