Intro+Portal Mod

Du hast Probleme beim Einbau oder bei der Benutzung eines Mods? In diesem Forum bist du richtig.
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.
trianor
Mitglied
Beiträge: 11
Registriert: 07.03.2006 22:30

Intro+Portal Mod

Beitrag von trianor »

Hallo!

Habe ein paar schwierigkeiten den mod einzubauen.

sobald ich die install ausführen möchte kommt sofort

phpBB : Kritischer Fehler

Could not connect to the database

Wenn ich normal ins Forum schauen möchte kommt:

Could not query Intro + Portal configuration !

RUN intro_portal_mod_db_install.php AND DELETE IT AFTER THAT AND CHECK THE FILES TO EDIT !!!

Fehler beim Abfragen der Intro + Portal Konfiguration !

FÜHRE DIE intro_portal_mod_db_install.php AUS UND LÖSCHE SIE DANACH UND ÜBERPRÜFE DIE ZU EDITIERENDEN DATEIEN !!!

HTH AWSW

DEBUG MODE

SQL Error : 1146 Table 'ordodi_01.INTROPORTALMOD_TABLE' doesn't exist

SELECT * FROM INTROPORTALMOD_TABLE

Line : 44
File : intro.php

demnach kann ich auch sonst nix machen. wäre für jede hilfe oder tip sehr dankbar.

lg
Zlocko

Beitrag von Zlocko »

SQL Error : 1146 Table 'ordodi_01.INTROPORTALMOD_TABLE' doesn't exist

Diese Tabelle fehlt auf deiner Datenbank. Erstell sie mal und dann wirds funktionieren.
trianor
Mitglied
Beiträge: 11
Registriert: 07.03.2006 22:30

Beitrag von trianor »

ich mach das, wie ihr sicher bemerkt, zum ersten mal. Wie kann ich so ne tabelle einfügen?
Benutzeravatar
infinity
Mitglied
Beiträge: 261
Registriert: 11.11.2004 14:20
Wohnort: Wängi
Kontaktdaten:

Re: Intro+Portal Mod

Beitrag von infinity »

trianor hat geschrieben: sobald ich die install ausführen möchte kommt sofort

phpBB : Kritischer Fehler

Could not connect to the database
öffne mal deine intro_portal_mod_db_install
suche

Code: Alles auswählen

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

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);
hochladen und ausführen.
trianor
Mitglied
Beiträge: 11
Registriert: 07.03.2006 22:30

Beitrag von trianor »

habe alles so gemacht, der install hat dann auch funktioniert, habe alle codes eingegeben, und mehrfach kontrolliert, die tabelle ist auch vorhanden aber es kommt trotzdem noch immer

Could not query Intro + Portal configuration !

RUN intro_portal_mod_db_install.php AND DELETE IT AFTER THAT AND CHECK THE FILES TO EDIT !!!

Fehler beim Abfragen der Intro + Portal Konfiguration !

FÜHRE DIE intro_portal_mod_db_install.php AUS UND LÖSCHE SIE DANACH UND ÜBERPRÜFE DIE ZU EDITIERENDEN DATEIEN !!!

HTH AWSW

DEBUG MODE

SQL Error : 1146 Table 'ordodi_01.INTROPORTALMOD_TABLE' doesn't exist

SELECT * FROM INTROPORTALMOD_TABLE

Line : 44
File : intro.php
trianor
Mitglied
Beiträge: 11
Registriert: 07.03.2006 22:30

Beitrag von trianor »

im admin bereich komm ich sogar in die navigation des mods rein aber wenn ich auf konfiguration gehe kommt

phpBB : Kritischer Fehler

Could not query introportalmod information in admin_board

DEBUG MODE

SQL Error : 1146 Table 'ordodi_01.INTROPORTALMOD_TABLE' doesn't exist

SELECT * FROM INTROPORTALMOD_TABLE

Line : 73
File : admin_introportalmod.php

die tabelle ist aber definiv laut myPHPadmin vorhanden
madness20
Mitglied
Beiträge: 6
Registriert: 07.03.2006 23:29

Beitrag von madness20 »

habe fast das selbe problem, wenn ich auf Install gehe kommt das..

--------------------------------------------------------------------------------
Warning: mysql_connect(): Access denied for user: 'web88@localhost' (Using password: NO) in /home/www/web88/html/phpBB2/db/mysql4.php on line 48

Warning: mysql_error(): supplied argument is not a valid MySQL-Link resource in /home/www/web88/html/phpBB2/db/mysql4.php on line 330

Warning: mysql_errno(): supplied argument is not a valid MySQL-Link resource in /home/www/web88/html/phpBB2/db/mysql4.php on line 331
phpBB : Kritischer Fehler

Could not connect to the database
------------------------------------------------------------------------------------

http://web88.server4.nl.kolido.net/phpBB2/


kann uns den jemand helfen? also bei mir weiß ich das es nicht am password liegt der ist bei der config eingetragen!
madness20
Mitglied
Beiträge: 6
Registriert: 07.03.2006 23:29

Re: Intro+Portal Mod

Beitrag von madness20 »

infinity hat geschrieben:
trianor hat geschrieben: sobald ich die install ausführen möchte kommt sofort

phpBB : Kritischer Fehler

Could not connect to the database
öffne mal deine intro_portal_mod_db_install
suche

Code: Alles auswählen

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

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);
hochladen und ausführen.

HAMMER GEIL DAS HAT GEKLAPPT! jetzt gehts bei mir


EDIT:

trianor bei dir liegt es wahrscheinlich daran weil du die install gar nicht gelöscht hast nach der installation!

DANKE!
trianor
Mitglied
Beiträge: 11
Registriert: 07.03.2006 22:30

Beitrag von trianor »

das installieren hat auch geklappt nur komm ich jetzt nicht mehr weiter. es ist alles richtig gemacht aber es funkt nicht so wie es soll....
trianor
Mitglied
Beiträge: 11
Registriert: 07.03.2006 22:30

Beitrag von trianor »

kann mir bei diesem problem den niemand helfen?
Antworten

Zurück zu „phpBB 2.0: Mod Support“