SQL Error : 1146
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.1, 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.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
install.txt
danke, genau nach dem schema bin ich vorgegangen und
leider klappt das nicht.
leider klappt das nicht.
Dein erster SQL Befehl sieht komisch aus. Also syntaktisch okay, aber komisch in der Hinsicht, dass Du evtl. vergessen hast in der constants.php die Tabelle zu definieren.
Irgendwo muss da was in der Art stehen:
Der zweite sieht korrekt ausl.
Irgendwo muss da was in der Art stehen:
Code: Alles auswählen
define('INTROPORTALMOD_TABLE', $table_prefix.'introportalmod');Gruss, Miriam.
Ich schmeiß' alles hin und...
... lasse es liegen
Ich schmeiß' alles hin und...
... lasse es liegen
klasse...
super, ein problem von zwei ist gelöst.
Die Navigation von dem Mod lässt sich schon aufrufen aber die
Konfiguration klappt noch nicht. Bekomme noch immer die Meldung:
phpBB : Kritischer Fehler
Could not query introportalmod information in admin_board
DEBUG MODE
SQL Error : 1146 Table 'db175848689.INTROPORTALMOD_TABLE' doesn't exist
SELECT * FROM INTROPORTALMOD_TABLE
Line : 73
File : admin_introportalmod.php
Die Navigation von dem Mod lässt sich schon aufrufen aber die
Konfiguration klappt noch nicht. Bekomme noch immer die Meldung:
phpBB : Kritischer Fehler
Could not query introportalmod information in admin_board
DEBUG MODE
SQL Error : 1146 Table 'db175848689.INTROPORTALMOD_TABLE' doesn't exist
SELECT * FROM INTROPORTALMOD_TABLE
Line : 73
File : admin_introportalmod.php
Zuletzt geändert von Justin am 03.09.2006 18:58, insgesamt 1-mal geändert.
Ich könnte wetten, dass diese Zeile73 so aussehen muss:
sieht aber (vielleicht) so aus:
Und er define Eintrag muss in die constants.php. Was sagt denn die Installationsanweisung?
Code: Alles auswählen
$sql = "SELECT * FROM " . INTROPORTALMOD_TABLE;Code: Alles auswählen
$sql = "SELECT * FROM INTROPORTALMOD_TABLE";Gruss, Miriam.
Ich schmeiß' alles hin und...
... lasse es liegen
Ich schmeiß' alles hin und...
... lasse es liegen
Das steht in der zeile
$sql = "SELECT * FROM " . INTROPORTALMOD_TABLE;
if(!$result = $db->sql_query($sql))
{
message_die(CRITICAL_ERROR, "Could not query introportalmod information in admin_board", "", __LINE__, __FILE__, $sql);
die Installationsanweisung sagt zu dem thema garnichts. da sie installation abgeschlossen ist und das Mod laufen müsste.
Bis jetzt geht nur die Navigation das Mod`s und der fehler tritt auf wenn ich die Kofiguration anklick.
$sql = "SELECT * FROM " . INTROPORTALMOD_TABLE;
if(!$result = $db->sql_query($sql))
{
message_die(CRITICAL_ERROR, "Could not query introportalmod information in admin_board", "", __LINE__, __FILE__, $sql);
die Installationsanweisung sagt zu dem thema garnichts. da sie installation abgeschlossen ist und das Mod laufen müsste.
Bis jetzt geht nur die Navigation das Mod`s und der fehler tritt auf wenn ich die Kofiguration anklick.
- Mahony
- Ehemaliges Teammitglied
- Beiträge: 12327
- Registriert: 17.11.2005 22:33
- Wohnort: Ostfildern Kemnat
- Kontaktdaten:
Hallo
Ändere in der intro_portal_mod_db_install.php folgendes.
Suche:
Ersetzte mit
Danach hochladen und im Browser aufrufen.
Grüße: Mahony
Ändere in der intro_portal_mod_db_install.php folgendes.
Suche:
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);Grüße: Mahony
Wer fragt, ist ein Narr für fünf Minuten, wer nicht fragt, ist ein Narr für immer.