Easy MOD Installer
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.
- Mahony
- Ehemaliges Teammitglied
- Beiträge: 12259
- Registriert: 17.11.2005 22:33
- Wohnort: Ostfildern Kemnat
- Kontaktdaten:
Hallo
Ändere in der intro_portal_mod_db_install.php folgendes
suche das hier:
ersetze mit dem hier:
Datei hochladen und dann wie gehabt ausführen.
Ändere in der intro_portal_mod_db_install.php folgendes
suche das hier:
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);
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);
Wer fragt, ist ein Narr für fünf Minuten, wer nicht fragt, ist ein Narr für immer.
super danke, das klappte
und ich hab jetzt alles hochgeladen installiert usw...
aber ein problem hab ich noch siehe
http://www.webmaster-hilfe.org/
gibts da cuh noch ne loesung ???
und ich hab jetzt alles hochgeladen installiert usw...
aber ein problem hab ich noch siehe
http://www.webmaster-hilfe.org/
gibts da cuh noch ne loesung ???
- Mahony
- Ehemaliges Teammitglied
- Beiträge: 12259
- Registriert: 17.11.2005 22:33
- Wohnort: Ostfildern Kemnat
- Kontaktdaten:
Hallo
Dann musst du noch alles was im Ordner IntroPortalMOD_root/templates/subSilver drinnen ist in deinen template-Ordner hochladen (also z.b. nach templates/dein_template/
P.S. Überprüfe zuletzt nochmal ob du auch tatsächlich alle Dateien hochgeladen hast.
Hast du die Änderungen in deinem Template auch ausgeführt? templates/dein_template/overall_header.tplund ich hab jetzt alles hochgeladen installiert usw...
aber ein problem hab ich noch siehe
http://www.webmaster-hilfe.org/
Code: Alles auswählen
#
# german: Finde
#
<tr>
<td height="25" align="center" valign="top" nowrap="nowrap"><span class="mainmenu"> <a href="{U_PROFILE}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_profile.gif" width="12" height="13" border="0" alt="{L_PROFILE}" hspace="3" />{L_PROFILE}</a> <a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_message.gif" width="12" height="13" border="0" alt="{PRIVATE_MESSAGE_INFO}" hspace="3" />{PRIVATE_MESSAGE_INFO}</a> <a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LOGIN_LOGOUT}" hspace="3" />{L_LOGIN_LOGOUT}</a> </span></td>
</tr>
#
#-----[ AFTER, ADD ]------------------------------------------
#
# german: Danach einfügen
#
<!-- Intro + Portal MOD START -->
<!-- BEGIN switch_introportalmod_disable -->
<tr>
<td height="25" align="center" valign="top" nowrap="nowrap"><span class="mainmenu"><b> <a href="{U_IntroPortalMOD1}">{L_IntroPortalMOD1}</a> <a href="{U_IntroPortalMOD2}">{L_IntroPortalMOD2}</a> <a href="{U_IntroPortalMOD3}">{L_IntroPortalMOD3}</a> </b></span></td>
</tr>
<!-- END switch_introportalmod_disable -->
<!-- Intro + Portal MOD END -->
P.S. Überprüfe zuletzt nochmal ob du auch tatsächlich alle Dateien hochgeladen hast.
Zuletzt geändert von Mahony am 11.02.2006 03:10, insgesamt 1-mal geändert.
Wer fragt, ist ein Narr für fünf Minuten, wer nicht fragt, ist ein Narr für immer.
- Mahony
- Ehemaliges Teammitglied
- Beiträge: 12259
- Registriert: 17.11.2005 22:33
- Wohnort: Ostfildern Kemnat
- Kontaktdaten:
Hallo
Überprüfe bitte nochmal die Änderungen in der common.php. Da hast du wahrscheinlich einen Fehler eingebaut.
Ach nochwas: Kontrolliere ob die .htacess Datei hochgeladen wurde.
Überprüfe bitte nochmal die Änderungen in der common.php. Da hast du wahrscheinlich einen Fehler eingebaut.
Code: Alles auswählen
#-----[ OPEN ]------------------------------------------
#
# german: Öffne
#
common.php
#
#-----[ FIND ]------------------------------------------
#
# german: Finde
#
while ( $row = $db->sql_fetchrow($result) )
{
$board_config[$row['config_name']] = $row['config_value'];
}
#
#-----[ AFTER, ADD ]------------------------------------------
#
# german: Danach einfügen
#
// Intro + Portal MOD START
$sql = "SELECT * FROM " . INTROPORTALMOD_TABLE;
if( ($result = $db->sql_query($sql)) )
while ( $row = $db->sql_fetchrow($result) )
{
$introportalmod_config[$row['config_name']] = $row['config_value'];
}
// Intro + Portal MOD END
Wer fragt, ist ein Narr für fünf Minuten, wer nicht fragt, ist ein Narr für immer.
- Mahony
- Ehemaliges Teammitglied
- Beiträge: 12259
- Registriert: 17.11.2005 22:33
- Wohnort: Ostfildern Kemnat
- Kontaktdaten:
Hallo
von
nach
kein Problem - ändere in der .htaccess die Reihenfolgekann man da noch einstellen das der als erstes in protal mod geht?
von
Code: Alles auswählen
DirectoryIndex index.html intro.php portal.php index.php index.htm
Code: Alles auswählen
DirectoryIndex portal.php index.html intro.php index.php index.htm
Wer fragt, ist ein Narr für fünf Minuten, wer nicht fragt, ist ein Narr für immer.