Inroportalmod installation
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Inroportalmod installation
Ich hab jetzt den easy mod ohne Probleme installiert und möchte gerne den Intro und Portalmod aber ich bekomme ihn nicht installiert weil immer irgentwelche Fehler angezeigt werden. Hat vielleicht jemand Zeit mir den Mod zu installieren, dem wäre ich sehr dankbar!
MfG Rubinho
MfG Rubinho
Also :
Warning
FIND FAILED: In file [language/lang_german/lang_main.php] could not find:
$lang['Search_new'] = 'Beiträge seit dem letzten Besuch anzeigen';
MOD script line #136 :: FAQ :: Report
Dann:
Critical Error
BEFOREADDFAILED: malformed script. A FIND was not previously performed.
MOD script line #160 :: FAQ :: Report
Und:SQL not performed: SQL commands are not performed automatically in this version of EM. The MOD you are installing wants to perform an SQL command. You will have to manually execute this the old fashion way. If you do not know how, ask the MOD author, not Nuttzy!
Warning
FIND FAILED: In file [language/lang_german/lang_main.php] could not find:
$lang['Search_new'] = 'Beiträge seit dem letzten Besuch anzeigen';
MOD script line #136 :: FAQ :: Report
Dann:
Critical Error
BEFOREADDFAILED: malformed script. A FIND was not previously performed.
MOD script line #160 :: FAQ :: Report
Und:SQL not performed: SQL commands are not performed automatically in this version of EM. The MOD you are installing wants to perform an SQL command. You will have to manually execute this the old fashion way. If you do not know how, ask the MOD author, not Nuttzy!
Zu 1:
Öffne die install.txt und änder das was er suchen soll in
?>
Zu 2:
Poste mal die Zeilen 150 - 170 aus der install.txt
Zu 3:
Diesen Fehler kannst du ignorieren! Du musst dann nur noch die install.php (weiß nicht genau wie sie heißt) ausführen
Edit:
Lies mal KB:knigge ! Den Punkt Topic Bumping lies dir genau durch!
Öffne die install.txt und änder das was er suchen soll in
?>
Zu 2:
Poste mal die Zeilen 150 - 170 aus der install.txt
Zu 3:
Diesen Fehler kannst du ignorieren! Du musst dann nur noch die install.php (weiß nicht genau wie sie heißt) ausführen
Edit:
Lies mal KB:knigge ! Den Punkt Topic Bumping lies dir genau durch!
Ich hoffe das ist richtig!
#
#-----[ OPEN ]------------------------------------------
#
# german: Öffne
#
language/lang_german/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
# german: Finde
#
$lang['Search_new'] = 'Beiträge seit dem letzten Besuch anzeigen';
#
#-----[ REPLACE WITH ]------------------------------------------
#
# german: Ersetze mit
#
$lang['Search_new'] = 'Beiträge seit dem letzten Besuch';
#
#-----[ FIND ]------------------------------------------
#
# german: Finde
#
?>
#
#-----[ BEFORE, ADD ]------------------------------------------
#
# german: Danvor einfügen
#
// Intro + Portal MOD START
$lang['Viewing_Intro'] = "Betrachtet das Intro";
$lang['Viewing_Portal'] = "Betrachtet das Portal";
$lang['IntroPortalMOD1'] = "Intro";
$lang['IntroPortalMOD2'] = "Portal";
$lang['IntroPortalMOD3'] = "Index";
$lang['IntroPortalMOD4'] = "www.phpbb.de";
$lang['IntroPortalMOD5'] = "www.phpbb.com";
$lang['IntroPortalMOD6'] = "phpBB Support";
// Intro + Portal MOD END
#
#-----[ 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
#
#-----[ OPEN ]------------------------------------------
#
# german: Öffne
#
language/lang_german/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
# german: Finde
#
$lang['Search_new'] = 'Beiträge seit dem letzten Besuch anzeigen';
#
#-----[ REPLACE WITH ]------------------------------------------
#
# german: Ersetze mit
#
$lang['Search_new'] = 'Beiträge seit dem letzten Besuch';
#
#-----[ FIND ]------------------------------------------
#
# german: Finde
#
?>
#
#-----[ BEFORE, ADD ]------------------------------------------
#
# german: Danvor einfügen
#
// Intro + Portal MOD START
$lang['Viewing_Intro'] = "Betrachtet das Intro";
$lang['Viewing_Portal'] = "Betrachtet das Portal";
$lang['IntroPortalMOD1'] = "Intro";
$lang['IntroPortalMOD2'] = "Portal";
$lang['IntroPortalMOD3'] = "Index";
$lang['IntroPortalMOD4'] = "www.phpbb.de";
$lang['IntroPortalMOD5'] = "www.phpbb.com";
$lang['IntroPortalMOD6'] = "phpBB Support";
// Intro + Portal MOD END
#
#-----[ 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