Seite 1 von 2

Problem: intro_portal_mod_db_install.php

Verfasst: 16.10.2006 00:03
von Maron.Chatzifrantzis
Hallo zusammen

Ich habe bereits die Suche benutzt und etliche Beiträge zu diesem Thema gelesen, ich finde keine Lösung und bitte um eure Hilfe.

Fehlerbeschreibung:

Die Installation von phpbb2.0.21 läuft fehlerfrei, ebenfalls die von EasyMod 0.3.0, welche ich jeweils hier im Forum herunter geladen habe.

Die Installation von Intro + Portal MOD 1.50a läuft von Schritt 1 bis 3 normal, denke ich, was mich etwas verwirrt ist folgende Meldung bei Schritt 2/3:

Code: Alles auswählen

SQL Bearbeitungsfehler:
Keine SQL Änderungen durchgeführt. Jedoch kannst du die zu bearbeitenden SQL-Befehle überspringen und später manuell erledigen

Der folgende Fehler trat auf:

Error:
Unknown SQL command "FÜHRE", statement: 1

SQL:
FÜHRE DIE DATEI intro_portal_mod_db_install.php AUS DEM FORUMROOT(Hauptverzeichnis Deines Forums) AUS UND LÖSCHE SIE DANACH !!! Beispiel: http://www.domain.de/phpbb2/intro_portal_mod_db_install.php RUN THE FILE intro_portal_mod_db_install.php FROM THE FORUMROOT(main-directory of your forum) AND DELETE IT AFTER THAT !!! Example: http://www.domain.com/phpbb2/intro_portal_mod_db_install.php
Ich ignoriere die Meldung, da ich nicht genau weiß, ob es eine ernstzunehmende Fehlermeldung darstellt und bestätige abschließend den Prozess mit "Installation fertigstellen".

Wenn ich im Anschluss darauf die Datei intro_portal_mod_db_install.php über www.url.tld/intro_portal_mod_db_install.php (also dem Foren-Root-Verzeichnis) aufrufe, erscheint folgende Fehlermeldung:

Code: Alles auswählen

Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'benutzer'@'212.227.109.177' (using password: NO) in /homepages/35/d111288515/htdocs/www.url.tld/db/mysql4.php on line 48

Warning: mysql_error(): supplied argument is not a valid MySQL-Link resource in /homepages/35/d111288515/htdocs/www.url.tld/db/mysql4.php on line 330

Warning: mysql_errno(): supplied argument is not a valid MySQL-Link resource in /homepages/35/d111288515/htdocs/www.url.tld/db/mysql4.php on line 331
phpBB : Kritischer Fehler

Could not connect to the database
Scheinbar ist in der Datei keinerlei Information für den Aufbau der Verbindung zur Datenbank enthalten, ich habe mir die Datei dann genauer angesehen und festgestellt dass die Datei die benötigten Informationen aus einer anderen Quelle bezieht, die dann vermutlich nicht über die benötigten Daten verfügt.

Wer kann mir bei der Lösung behilflich sein?

Verfasst: 16.10.2006 00:13
von area57
Moin
Wer kann mir bei der Lösung behilflich sein?
Da hilft die nette Knowledge Base mit folgendem Artikel weiter: KB:131 (letzter Abschnitt) ;)

Verfasst: 16.10.2006 00:20
von Maron.Chatzifrantzis
Danke für den Hinweis, hatte ich bereits vorher schon gelesen und beachtet. Die Daten in der Datei sind alle richtig - hilft folglich nicht weiter.

Ich habe auch die dbinformer.php benutzt und festgestellt, dass ich die DB nur auf MySQL 3x und 4x testen kann, ich benutze jedoch MySQL 5.0, kann dies ein Grund für den Fehler sein?

Aber davon einmal abgesehen, besteht die Möglichkeit die Datenbank Anweisungen aus der intro_portal_mod_db_install.php manuell in der DB via phpmyadmin auszuführen? Wie müssten die Anweisungen der Datei dann lauten? Anbei die originalen Anweisungen der Datei intro_portal_mod_db_install.php als Auszug von meinem Server:

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);


// Start session management
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
// End session management


// Start Restrict to members
if( !$userdata['session_logged_in'] )
{
header("Location: " . append_sid("login.$phpEx?redirect=intro_portal_mod_db_install.$phpEx", true));
exit;
}
// End Restrict to members


// Start User is Admin ?
if ( $userdata['user_level'] == ADMIN )
{
}
else
{
message_die(GENERAL_MESSAGE, $lang['Not_Authorised'], $lang['Not_Authorised']);
exit;
}
// End User is Admin ?


echo '<html>
<head>
<title>SQL-DB-Installer - Intro + Portal MOD</title>
</head>
<body>
<h1>SQL-DB-Installer - Intro + Portal MOD</h1>
<hr />';
if (!isset($HTTP_GET_VARS['install'])) {
echo '<a href="?install=1">Please click here | Bitte hier klicken</a>';
}
else {
$queries = array(

// "DROP TABLE " . $table_prefix . "introportalmod",

"CREATE TABLE " . $table_prefix . "introportalmod (
  config_name varchar(255) NOT NULL default '',
  config_value text NOT NULL,
  PRIMARY KEY (config_name)
) TYPE=MyISAM;",

"INSERT INTO " . $table_prefix . "introportalmod VALUES ('config_id', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('modversion', '1.50a')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('introportalmod_disable', '0')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('intro_disable', '0')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('intro_disable_msg', 'Intro derzeit deaktiviert')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('introlasttopics_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('introlasttopics_limit', '10')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('lasttopics_length_intro', '25')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('portal_disable', '0')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('portal_disable_msg', 'Portal derzeit deaktiviert')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('navigation_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('navigationquote_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('lastnewmembers_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('lastnewmembers_limit', '5')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('topposter_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('topposter_limit', '5')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('topposts_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('topposts_limit', '5')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('searchtopics_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('pollbox_active', '0')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('pollbox_forums', '1,2,3,4,5')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('forumview_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('lasttopics_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('lasttopics_limit', '10')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('lasttopics_length_portal', '25')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('freenet_active', '0')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('heise_active', '0')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('whoisonline_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('webmaster_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('partners_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('Partnersitelinks', 'http://www.partner1.de\r\nhttp://www.partner2.de\r\nhttp://www.partner3.de\r\nhttp://www.partner4.de\r\nhttp://www.partner5.de')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('google_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('left_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('center_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('right_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('border_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('fpost_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('fpost_numofnews', '3')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('fpost_forums', '1,2,3,4,5')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('fpost_newslength', '250')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('loginform_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('welcomeuser_active', '0')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('forumlegend_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('userpostcount_active', '1')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('birthdaymod_active', '0')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('lastvisitmod_active', '0')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('chatboxmod_active', '0')",
"INSERT INTO " . $table_prefix . "introportalmod VALUES ('globalannouncemod_active', '0')",

// "DROP TABLE " . $table_prefix . "introportalmodnav",

"CREATE TABLE " . $table_prefix . "introportalmodnav
(link_active tinyint(1) NOT NULL default '1',
link_id mediumint(5) NOT NULL default '0',
link_cat mediumint(5) NOT NULL default '0',
link_sub mediumint(5) NOT NULL default '0',
link_name varchar(60) NOT NULL default '',
link_url varchar(100) NOT NULL default '',
link_level tinyint(1) NOT NULL default '0',
link_level_type tinyint(1) NOT NULL default '0',
KEY link_id (link_id), KEY link_cat (link_cat),
KEY link_sub (link_sub))
TYPE=MyISAM;",

"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 0, 0, 0, 'Navigation', '', -1, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 0, 0, 1, 'Forum', '', -1, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 1, 0, 1, '\$lang[\'IntroPortalMOD1\']', 'intro.php', -1, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 2, 0, 1, '\$lang[\'IntroPortalMOD2\']', 'portal.php', -1, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 3, 0, 1, '\$lang[\'IntroPortalMOD3\']', 'index.php', -1, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 0, 0, 2, '\$lang[\'Registered_users\']', '', -1, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 4, 0, 3, '\$lang[\'Register\']', 'profile.php?mode=register', -1, 0)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 5, 0, 2, '\$lang[\'Profile\']', 'profile.php?mode=editprofile', 0, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 6, 0, 2, '\$lang[\'Search\']', 'search.php', 0, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 7, 0, 2, '\$lang[\'Memberlist\']', 'memberlist.php', 0, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 8, 0, 2, '\$lang[\'FAQ\']', 'faq.php', 0, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 9, 0, 2, '\$lang[\'Usergroups\']', 'groupcp.php', 0, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 10, 0, 2, '\$lang[\'Private_Messages\']', 'privmsg.php', 0, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 11, 0, 2, '\$lang[\'Who_is_Online\']', 'viewonline.php', 0, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 0, 0, 4, '\$lang[\'IntroPortalMOD6\']', '', -1, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 12, 0, 4, '\$lang[\'IntroPortalMOD4\']', 'http://www.phpbb.de', -1, 2)",
"INSERT INTO " . $table_prefix . "introportalmodnav VALUES (1, 0, 0, 3, '\$lang[\'Guest\']', '', -1, 2)"

);

$success = true;
foreach($queries as $query) {
if (!$db->sql_query($query)) {
echo '<font color="red">An error occurred ! Changes have not been entered successfully !<br /><br />Es Fehler ist aufgetreten ! Änderung nicht erfolgreich eingetragen !</font><br /><br />';
echo mysql_error();
$success = false;
break;
}
}
if ($success) {
echo '<font color="green">DB-Changes have been entered successfully. You should delete this SQL-DB-Installer as soon as possible !<br /><br />DB-Änderung wurde erfolgreich ausgeführt. Du solltest diesen SQL-DB-Installer sobald wie möglich löschen !';
}
}
?>
Übrigens, im Backend ist alles soweit in Ordnung, es wird wie zu erwarten war das ACP um "Intro + Portal" erweitert, bei Aufruf wird natürlich eine Fehlermeldung ausgegeben, dass die Tabellen nicht vorhanden sind (Was sie logischerweise auch nicht sein können).

Verfasst: 16.10.2006 00:54
von Maron.Chatzifrantzis
Vielleicht so?

In phpmyadmin manuell unter SQL folgende Befehle ausführen:

Code: Alles auswählen

CREATE TABLE phpbb_introportalmod (
  config_name varchar(255) NOT NULL default '',
  config_value text NOT NULL,
  PRIMARY KEY (config_name)
) TYPE=MyISAM;

INSERT INTO phpbb_introportalmod VALUES ('config_id', '1');
INSERT INTO phpbb_introportalmod VALUES ('modversion', '1.50a');
INSERT INTO phpbb_introportalmod VALUES ('introportalmod_disable', '0');
INSERT INTO phpbb_introportalmod VALUES ('intro_disable', '0');
INSERT INTO phpbb_introportalmod VALUES ('intro_disable_msg', 'Intro derzeit deaktiviert');
INSERT INTO phpbb_introportalmod VALUES ('introlasttopics_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('introlasttopics_limit', '10');
INSERT INTO phpbb_introportalmod VALUES ('lasttopics_length_intro', '25');
INSERT INTO phpbb_introportalmod VALUES ('portal_disable', '0');
INSERT INTO phpbb_introportalmod VALUES ('portal_disable_msg', 'Portal derzeit deaktiviert');
INSERT INTO phpbb_introportalmod VALUES ('navigation_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('navigationquote_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('lastnewmembers_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('lastnewmembers_limit', '5');
INSERT INTO phpbb_introportalmod VALUES ('topposter_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('topposter_limit', '5');
INSERT INTO phpbb_introportalmod VALUES ('topposts_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('topposts_limit', '5');
INSERT INTO phpbb_introportalmod VALUES ('searchtopics_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('pollbox_active', '0');
INSERT INTO phpbb_introportalmod VALUES ('pollbox_forums', '1,2,3,4,5');
INSERT INTO phpbb_introportalmod VALUES ('forumview_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('lasttopics_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('lasttopics_limit', '10');
INSERT INTO phpbb_introportalmod VALUES ('lasttopics_length_portal', '25');
INSERT INTO phpbb_introportalmod VALUES ('freenet_active', '0');
INSERT INTO phpbb_introportalmod VALUES ('heise_active', '0');
INSERT INTO phpbb_introportalmod VALUES ('whoisonline_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('webmaster_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('partners_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('Partnersitelinks', 'http://www.partner1.de\r\nhttp://www.partner2.de\r\nhttp://www.partner3.de\r\nhttp://www.partner4.de\r\nhttp://www.partner5.de');
INSERT INTO phpbb_introportalmod VALUES ('google_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('left_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('center_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('right_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('border_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('fpost_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('fpost_numofnews', '3');
INSERT INTO phpbb_introportalmod VALUES ('fpost_forums', '1,2,3,4,5');
INSERT INTO phpbb_introportalmod VALUES ('fpost_newslength', '250');
INSERT INTO phpbb_introportalmod VALUES ('loginform_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('welcomeuser_active', '0');
INSERT INTO phpbb_introportalmod VALUES ('forumlegend_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('userpostcount_active', '1');
INSERT INTO phpbb_introportalmod VALUES ('birthdaymod_active', '0');
INSERT INTO phpbb_introportalmod VALUES ('lastvisitmod_active', '0');
INSERT INTO phpbb_introportalmod VALUES ('chatboxmod_active', '0');
INSERT INTO phpbb_introportalmod VALUES ('globalannouncemod_active', '0');

// DROP TABLE phpbb_introportalmodnav;

CREATE TABLE phpbb_introportalmodnav
(link_active tinyint(1) NOT NULL default '1',
link_id mediumint(5) NOT NULL default '0',
link_cat mediumint(5) NOT NULL default '0',
link_sub mediumint(5) NOT NULL default '0',
link_name varchar(60) NOT NULL default '',
link_url varchar(100) NOT NULL default '',
link_level tinyint(1) NOT NULL default '0',
link_level_type tinyint(1) NOT NULL default '0',
KEY link_id (link_id), KEY link_cat (link_cat),
KEY link_sub (link_sub))
TYPE=MyISAM;

INSERT INTO phpbb_introportalmodnav VALUES (1, 0, 0, 0, 'Navigation', '', -1, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 0, 0, 1, 'Forum', '', -1, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 1, 0, 1, '\$lang[\'IntroPortalMOD1\']', 'intro.php', -1, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 2, 0, 1, '\$lang[\'IntroPortalMOD2\']', 'portal.php', -1, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 3, 0, 1, '\$lang[\'IntroPortalMOD3\']', 'index.php', -1, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 0, 0, 2, '\$lang[\'Registered_users\']', '', -1, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 4, 0, 3, '\$lang[\'Register\']', 'profile.php?mode=register', -1, 0);
INSERT INTO phpbb_introportalmodnav VALUES (1, 5, 0, 2, '\$lang[\'Profile\']', 'profile.php?mode=editprofile', 0, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 6, 0, 2, '\$lang[\'Search\']', 'search.php', 0, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 7, 0, 2, '\$lang[\'Memberlist\']', 'memberlist.php', 0, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 8, 0, 2, '\$lang[\'FAQ\']', 'faq.php', 0, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 9, 0, 2, '\$lang[\'Usergroups\']', 'groupcp.php', 0, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 10, 0, 2, '\$lang[\'Private_Messages\']', 'privmsg.php', 0, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 11, 0, 2, '\$lang[\'Who_is_Online\']', 'viewonline.php', 0, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 0, 0, 4, '\$lang[\'IntroPortalMOD6\']', '', -1, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 12, 0, 4, '\$lang[\'IntroPortalMOD4\']', 'http://www.phpbb.de', -1, 2);
INSERT INTO phpbb_introportalmodnav VALUES (1, 0, 0, 3, '\$lang[\'Guest\']', '', -1, 2);

Verfasst: 16.10.2006 01:06
von area57
:roll: mit letzter Abschnitt von KB:131 ist dies gemeint:
Fehlermeldung beim Einbau von MOD's
, und diese änderung hast du nicht gemacht ;)

Verfasst: 16.10.2006 01:18
von Maron.Chatzifrantzis
entimon hat geschrieben::roll: mit letzter Abschnitt von KB:131 ist dies gemeint:
Fehlermeldung beim Einbau von MOD's
, und diese änderung hast du nicht gemacht ;)
Du bist mein persönlicher Liebling heute Abend :P

Danke!

Verfasst: 04.11.2006 18:25
von Santana
ja hab auch die anweisung befolgt von could not connect to the database hab die änderungen ausgeführt und gespeichert neu hochgeladen und nu wenn i den link im browser auf rufe kommt folgendes:

SQL-DB-Installer - Intro + Portal MOD

--------------------------------------------------------------------------------
Please click here | Bitte hier klicken

so wenn i nun auf hier klicken klicke kommt des login vom forum wenn i des ausführe kommt wieder des gleiche mit SQL DB Installer mit hier klicken usw komm nit weiter damit

nun hab ich händisch laut obiger anweisung tabellen erzeugt per sql befehl sie stehn auch nun in der DB drinnen

bis nun funktioniert mal die Navigation im adminbereich aber bei der konfiguration kommt dann

phpBB : Critical Error

Could not query introportalmod information in admin_board

DEBUG MODE

SQL Error : 1146 Tabelle 'poesie_und_lyrikatdb1.INTROPORTALMOD_TABLE' existiert nicht

SELECT * FROM INTROPORTALMOD_TABLE

Line : 73
File : admin_introportalmod.php

obwohl ja beide tabellen in der DB sind und auf dem server ist auch alles oben

hm hm hm werd aber mal nach dem debug dings suchen noch

lg

Verfasst: 04.11.2006 18:42
von gloriosa
Hallo,
Dir sollte eigentlich bekannt sein, dass Du Dich schon vorher als Admin anmelden musst ! :oops:

Verfasst: 04.11.2006 18:59
von Santana
bin ich ja

hab unendlich viele explorer deswegen ja offen

Verfasst: 04.11.2006 23:27
von Boecki91
du hst doch schon ein manuelles befehl-ausführ-Script von Maron.Chatzifrantzis bekommen

geh doch mal in deinen phpmyadmin rienund führe die Befehle dort aus

SQL oben ankliucken und das da rien kopierne ausführen und alle diene Probleme sind gelöst.