Möchte mir den phpBB Calendar 0.1.0 zum Portal und dann anschliessend phpBB_Calendar_block_on_Board3_Portal_103 installieren. Nun damit man den phpbb Calendar 0.1.0 installieren kann braucht es ja die SQL-Befehle, die sind gleich am Anfang. - Es gibt zwar ne deutsche Überetzung zum Modul aber keine deutsche Anleitung und ich habe es noch nie gemacht. Hier der Link: http://www.board3.de/viewtopic.php?f=21 ... d8395d36d4
Die SQL-Sachen sind gleich am Anfang:
Code: Alles auswählen
/* WARNING: do NOT execute the SQL commands on the phpbb_acl_options table more
than once if you're upgrading or trying to repair a previous installation of the calendar mod.
Executing this command more than once will add duplicate entries to the table
breaking your current permissions and causing the calendar to malfunction */
INSERT INTO phpbb_acl_options (auth_option, is_global, is_local, founder_only) VALUES ('a_calendar', 1, 0, 0),
('m_calendar_edit_other_users_events', 1, 0, 0),
('m_calendar_delete_other_users_events', 1, 0, 0),
('u_calendar_view_events', 1, 0, 0),
('u_calendar_edit_events', 1, 0, 0),
('u_calendar_delete_events', 1, 0, 0),
('u_calendar_create_public_events', 1, 0, 0),
('u_calendar_create_group_events', 1, 0, 0),
('u_calendar_create_private_events', 1, 0, 0),
('u_calendar_nonmember_groups', 1, 0, 0),
('u_calendar_track_rsvps', 1, 0, 0),
('u_calendar_allow_guests', 1, 0, 0),
('u_calendar_view_headcount', 1, 0, 0),
('u_calendar_view_detailed_rsvps', 1, 0, 0),
('u_calendar_create_recurring_events', 1, 0, 0),
('m_calendar_edit_other_users_rsvps', 1, 0, 0);
CREATE TABLE IF NOT EXISTS `phpbb_calendar_config` (
`config_name` varchar(255) NOT NULL,
`config_value` varchar(255) NOT NULL
);
usw... so wie was wo muss ich machen, wie vorgehen, um das in die SQL-Datenbank zu bekommen? Evtl. birngts was, aber ich habe auch sqldumper installiert. Danke
Nachtrag: Evtl. ne dumme Frage aber kann ich diese Befehle komplett in phpMyAdmin unter "SQL"-Register einfügen und starten?