Portal einbauen für mich ?

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.
Dreamer1984
Mitglied
Beiträge: 12
Registriert: 24.05.2006 10:28
Wohnort: Stendal
Kontaktdaten:

Beitrag von Dreamer1984 »

gib mal den Fehler Code ;) damit man weiss welcher fehler kommt ^^ ich hab den selben mod bei mir laufen unter

http://dreamer1984.dr.funpic.de/forum/portal.php

ich hatte auch probs die Install datei auszuführen weil ich meine SQL tabellen anders genannt hatte.

statt

Code: Alles auswählen

phpbb_introportalmod
muste ich es von hand auf

Code: Alles auswählen

phpbb_1introportalmod
ändern.
Da ich beim Forum Install

Code: Alles auswählen

phpbb_1
statt

Code: Alles auswählen

phpbb_
angegeben hatte.

Die Install datei erstell nur in der SQL Datenbank die für das Portal bzw. Intro notwendigen Tabellen.

der code is für mich angepasst musst du für dich auch machen zb. die 1 raus nehmen.

Code: Alles auswählen

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

INSERT INTO phpbb_1introportalmod VALUES ('config_id', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('modversion', '1.50a'); 
INSERT INTO phpbb_1introportalmod VALUES ('introportalmod_disable', '0'); 
INSERT INTO phpbb_1introportalmod VALUES ('intro_disable', '0'); 
INSERT INTO phpbb_1introportalmod VALUES ('intro_disable_msg', 'Intro derzeit deaktiviert'); 
INSERT INTO phpbb_1introportalmod VALUES ('introlasttopics_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('introlasttopics_limit', '10'); 
INSERT INTO phpbb_1introportalmod VALUES ('lasttopics_length_intro', '25'); 
INSERT INTO phpbb_1introportalmod VALUES ('portal_disable', '0'); 
INSERT INTO phpbb_1introportalmod VALUES ('portal_disable_msg', 'Portal derzeit deaktiviert'); 
INSERT INTO phpbb_1introportalmod VALUES ('navigation_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('navigationquote_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('lastnewmembers_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('lastnewmembers_limit', '5'); 
INSERT INTO phpbb_1introportalmod VALUES ('topposter_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('topposter_limit', '5'); 
INSERT INTO phpbb_1introportalmod VALUES ('topposts_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('topposts_limit', '5'); 
INSERT INTO phpbb_1introportalmod VALUES ('searchtopics_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('pollbox_active', '0'); 
INSERT INTO phpbb_1introportalmod VALUES ('pollbox_forums', '1,2,3,4,5'); 
INSERT INTO phpbb_1introportalmod VALUES ('forumview_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('lasttopics_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('lasttopics_limit', '10'); 
INSERT INTO phpbb_1introportalmod VALUES ('lasttopics_length_portal', '25'); 
INSERT INTO phpbb_1introportalmod VALUES ('freenet_active', '0'); 
INSERT INTO phpbb_1introportalmod VALUES ('heise_active', '0'); 
INSERT INTO phpbb_1introportalmod VALUES ('whoisonline_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('webmaster_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('partners_active', '1'); 
INSERT INTO phpbb_1introportalmod 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_1introportalmod VALUES ('google_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('left_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('center_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('right_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('border_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('fpost_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('fpost_numofnews', '3'); 
INSERT INTO phpbb_1introportalmod VALUES ('fpost_forums', '1,2,3,4,5'); 
INSERT INTO phpbb_1introportalmod VALUES ('fpost_newslength', '250'); 
INSERT INTO phpbb_1introportalmod VALUES ('loginform_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('welcomeuser_active', '0'); 
INSERT INTO phpbb_1introportalmod VALUES ('forumlegend_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('userpostcount_active', '1'); 
INSERT INTO phpbb_1introportalmod VALUES ('birthdaymod_active', '0'); 
INSERT INTO phpbb_1introportalmod VALUES ('lastvisitmod_active', '0'); 
INSERT INTO phpbb_1introportalmod VALUES ('chatboxmod_active', '0'); 
INSERT INTO phpbb_1introportalmod VALUES ('globalannouncemod_active', '0'); 



CREATE TABLE phpbb_1introportalmodnav 
  (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_1introportalmodnav VALUES (1, 0, 0, 0, 'Navigation', '', -1, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 0, 0, 1, 'Forum', '', -1, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 1, 0, 1, '\$lang[\'IntroPortalMOD1\']', 'intro.php', -1, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 2, 0, 1, '\$lang[\'IntroPortalMOD2\']', 'portal.php', -1, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 3, 0, 1, '\$lang[\'IntroPortalMOD3\']', 'index.php', -1, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 0, 0, 2, '\$lang[\'Registered_users\']', '', -1, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 4, 0, 3, '\$lang[\'Register\']', 'profile.php?mode=register', -1, 0); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 5, 0, 2, '\$lang[\'Profile\']', 'profile.php?mode=editprofile', 0, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 6, 0, 2, '\$lang[\'Search\']', 'search.php', 0, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 7, 0, 2, '\$lang[\'Memberlist\']', 'memberlist.php', 0, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 8, 0, 2, '\$lang[\'FAQ\']', 'faq.php', 0, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 9, 0, 2, '\$lang[\'Usergroups\']', 'groupcp.php', 0, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 10, 0, 2, '\$lang[\'Private_Messages\']', 'privmsg.php', 0, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 11, 0, 2, '\$lang[\'Who_is_Online\']', 'viewonline.php', 0, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 0, 0, 4, '\$lang[\'IntroPortalMOD6\']', '', -1, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 12, 0, 4, '\$lang[\'IntroPortalMOD4\']', 'http://www.phpbb.de', -1, 2); 
INSERT INTO phpbb_1introportalmodnav VALUES (1, 0, 0, 3, '\$lang[\'Guest\']', '', -1, 2);
ma|trix
Mitglied
Beiträge: 310
Registriert: 29.01.2004 19:44
Kontaktdaten:

intro+portal

Beitrag von ma|trix »

ich probier es jetzt einfach noch mal aus, aber was du mir da alles erzählst, das musste ich nie machen früher da hat das immer geklappt :(
Wenn ihr Wollt könnt ihr euch gerne bei mir anmelden, ich freue mich über jeden neuen User. Was euch alles im Forum erwartet müst ihr schon selber herausfinden
Dreamer1984
Mitglied
Beiträge: 12
Registriert: 24.05.2006 10:28
Wohnort: Stendal
Kontaktdaten:

Beitrag von Dreamer1984 »

zur not bau ich es dir ein ;) mit dem Portal + Intro Mod 1.5 hab ich schon etwas erfahrung ;)
jeder rechtschreibfehler ist ungewollt nur kann ich es nicht ändern da sie für mich richtig sind ;)
faster
Mitglied
Beiträge: 198
Registriert: 26.05.2005 19:25
Wohnort: Dinklage

Beitrag von faster »

wenn du beim ausführen, der intro_portal_mod_db_install.php die fehlermldung bekommst, vonwegen could connect the database dann änder die zeilen in der intro_portal_mod_db_install.php so wie ich es dir schon geschrieben hatte, dann wird das auch klappen. Hatte den mod letztens auch erst eingebaut und bei mir läuft der auch.
Antworten

Zurück zu „phpBB 2.0: Mod Support“