Seite 2 von 3

Verfasst: 20.07.2004 10:38
von Maverick1977
Die Tabelle mit deinem angegebenen Namen existiert gar nicht?!

Nur diese:
bb1_announcements
bb1_avatars
bb1_bbcode
bb1_boards
bb1_config
bb1_folders
bb1_groups
bb1_notify
bb1_object2board
bb1_object2user
bb1_pms
bb1_pmsend
bb1_poll
bb1_posts
bb1_ranks
bb1_smilies
bb1_style
bb1_threads
bb1_user_table
bb1_useronline
bb1_vote


Übrigens: Wenn ich die Datei .htaccess, die in der entpackten Datei von meinem Intro/Portal-Mod zu finden ist, hochlade, dann funktioniert das Forum gar NICHT mehr. Deshalb habe ich sie gar nicht auf den Server geladen!

Verfasst: 20.07.2004 10:43
von Markus67
Hi ...

Du brauchst die .htaccess auch nicht zwingend ... es kann sein dass dein Hoster dies nicht erlaubt ....

Der Intro&Portal MOD benötigt zwei Tabellen in der Datenbank ...

bb1_introportalmod
bb1_introportalmodnav

Keiner der beiden ist vorhanden ?

Und du bist sicher dass du mit der richtigen Datenbank verbunden bist ?

Markus

Verfasst: 20.07.2004 10:51
von Maverick1977
Hoffe ich habe jetzt die richtige DB. [Wie findet man das raus??]

Hier die Einträge:

link_active tinyint(1) Nein 1
link_id mediumint(5) Nein 0
link_cat mediumint(5) Nein 0
link_sub mediumint(5) Nein 0
link_name varchar(60) Nein
link_url varchar(100) Nein
link_level tinyint(1) Nein 0
link_level_type tinyint(1) Nein 0

Verfasst: 20.07.2004 10:54
von Markus67
Hi ...

schau mal in der config.php im Forum nach .... dort stehen die relevanten Angaben drin ....

Ich habe das Gefühl du bist in der falschen Datenbank ...

Markus

Verfasst: 20.07.2004 10:57
von Maverick1977
habe nachgeschaut.

Ich bin in der richtigen Datenbank. Wollte eben nochmal die Install-Datei durchführen, klappte aber nicht...

Verfasst: 20.07.2004 10:58
von Maverick1977
phpbb_auth_access 16 MyISAM 3,3 KB -
phpbb_banlist 0 MyISAM 1,0 KB -
phpbb_categories 6 MyISAM 3,2 KB -
phpbb_chatbox 2 MyISAM 4,2 KB 1.928 Bytes
phpbb_chatbox_session 0 MyISAM 2,0 KB 28 Bytes
phpbb_config 61 MyISAM 4,8 KB 24 Bytes
phpbb_confirm 0 MyISAM 1,0 KB -
phpbb_disallow 0 MyISAM 1,0 KB -
phpbb_forum_prune 2 MyISAM 3,0 KB -
phpbb_forums 16 MyISAM 6,8 KB 100 Bytes
phpbb_groups 11 MyISAM 3,4 KB 92 Bytes
phpbb_introportalmod 50 MyISAM 4,5 KB -
phpbb_introportalmodnav 16 MyISAM 4,7 KB 68 Bytes
phpbb_posts 18 MyISAM 6,8 KB 80 Bytes
phpbb_posts_text 18 MyISAM 5,6 KB 64 Bytes
phpbb_privmsgs 0 MyISAM 1,0 KB -
phpbb_privmsgs_text 0 MyISAM 1,0 KB -
phpbb_ranks 9 MyISAM 2,6 KB -
phpbb_search_results 1 MyISAM 3,3 KB -
phpbb_search_wordlist 135 MyISAM 8,1 KB -
phpbb_search_wordmatch 172 MyISAM 8,4 KB 40 Bytes
phpbb_sessions 4 MyISAM 10,1 KB 1.881 Bytes
phpbb_smilies 42 MyISAM 3,6 KB -
phpbb_themes 2 MyISAM 2,5 KB 76 Bytes
phpbb_themes_name 2 MyISAM 6,4 KB 1.506 Bytes
phpbb_topics 6 MyISAM 6,6 KB 91 Bytes
phpbb_topics_watch 0 MyISAM 1,0 KB -
phpbb_user_group 11 MyISAM 3,1 KB 32 Bytes
phpbb_users 8 MyISAM 4,3 KB -
phpbb_vote_desc 3 MyISAM 3,2 KB 20 Bytes
phpbb_vote_results 7 MyISAM 3,3 KB 40 Bytes
phpbb_vote_voters 2 MyISAM 4,1 KB 30 Bytes
phpbb_words

Das sind alle Tabellen.

Verfasst: 20.07.2004 11:04
von Maverick1977
Der Fehler, wenn ich die Install-Datein nochmal ausführe:

Zitat: SQL-DB-Installer - Intro + Portal MOD

--------------------------------------------------------------------------------
An error occurred ! Changes have not been entered successfully !

Es Fehler ist aufgetreten ! Änderung nicht erfolgreich eingetragen !

Table 'phpbb_introportalmod' already exists

Verfasst: 20.07.2004 11:10
von Markus67
Hi ....

wunderbar :wink:

lösche die komplette Tabelle phpbb_introportalmodnav

Danach gehst du in das SQL-Fenster und gibst dort per Copy&Paste folgenden Code ein ..

Code: Alles auswählen

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);
Dann sollte die Tabelle wieder mit dem richtigen Inhalt vorhanden und der Fehler eval() behoben sein ...

Markus

Verfasst: 20.07.2004 11:18
von Maverick1977
Auch wunderprächtig. Hat gefunzt. Kannst du mir noch verraten, was der Fehler war und was ich angestellt habe?!

-> DANKE für den Support!

Verfasst: 20.07.2004 11:26
von Markus67
Hi ...

das hängt mit der Navigation zusammen wenn neue Links erstellt werden ...

Lies dir am besten das mal durch .. da ist es verständlich vom Autor des MOD's erklärt ... :wink:

http://www.phpbb.de/topic39576.html

Markus