Hallo
2. du hast das calender-HTML in der overall_header.html nicht entfernt.
Da ist nichts mehr vorhanden vom Kalender.
der calender-mod funktioniert, ich hab den auch und der läuft wie eine 1.
Wie oben schon erwähnt, ist es mir nun klar warum es nicht funktioniert hatte. Ich hatte den Mod geladen und die dort aktuellste deutschen Dateien. Hier in diesem Forum wurde ich dann darauf aufmerksam gemacht das es eben nicht die akuellsten deutschen Dateien sind.
Nun möchte ich den Kalender nochmals einbauen. Es scheitert nun aber bereits beim SQL Befehl:
Code: Alles auswählen
Fehler
SQL-Befehl:
/* 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
);
MySQL meldet:
#1062 - Duplicate entry 'a_calendar' for key 2
Gruss, Darot