Hallo
@Helix
Bei dir scheint tatsächlich die Tabelle
phpbb_introportalmod zu fehlen. Du musst die Datei
intro_portal_mod_db_install.php hochladen und aufrufen.
Bevor du die Datei hochlädst ändere bitte vorher noch
das hier
finde
Code: Alles auswählen
<?php
define('IN_PHPBB', 1);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'config.'.$phpEx);
include($phpbb_root_path . 'common.'.$phpEx);
include($phpbb_root_path . 'includes/constants.'.$phpEx);
include($phpbb_root_path . 'includes/db.'.$phpEx);
Ersetze mit
Code: Alles auswählen
<?php
define('IN_PHPBB', 1);
$phpbb_root_path = './';
include_once($phpbb_root_path . 'extension.inc');
include_once($phpbb_root_path . 'config.'.$phpEx);
include_once($phpbb_root_path . 'common.'.$phpEx);
include_once($phpbb_root_path . 'includes/constants.'.$phpEx);
include_once($phpbb_root_path . 'includes/db.'.$phpEx);
sonst erhälst du eine Fehlermeldung und die benötigten Tabellen werden nicht angelegt.
Und für dich
der_aerzte_fan_admin
Der MOD legt definitiv keine Tabelle mit dem Namen phpbb_diebestebandintroportalmod an.
Bei dir liegt der Fehler in der Datei
constants.php
Kontrolliere bitte ob folgendes in der
constants.php gemacht wurde.
Code: Alles auswählen
#-----[ OPEN ]------------------------------------------
#
# german: Öffne
#
includes/constants.php
#
#-----[ FIND ]------------------------------------------
#
# german: Finde
#
define('PAGE_GROUPCP', -11);
#
#-----[ AFTER, ADD ]------------------------------------------
#
# german: Danach einfügen
#
// Intro + Portal MOD START
define('PAGE_INTRO', -12);
define('PAGE_PORTAL', -13);
// Intro + Portal MOD END
#
#-----[ FIND ]------------------------------------------
#
# german: Finde
#
define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');
#
#-----[ AFTER, ADD ]------------------------------------------
#
# german: Danach einfügen
#
// Intro + Portal MOD START
define('INTROPORTALMOD_TABLE', $table_prefix.'introportalmod');
// Intro + Portal MOD END
#
Irgendwo dort muss dein Fehler liegen.