I found and finally could solve a bug in the calendarscript reminder plugin of Michael Estigoy:
When you have multiple calendars, the csr won't work: there is missing a variable in the url after you set the reminder.
To solve this:
1. csrinput.html
insert this in the form :
<input type="hidden" name="calendar" value="<%csr_key%>">
2. display_after_getEvent.pl
after this (around line 50): sub display_after_getEvent {
insert this: $csr_key = $calendar;
in this routine: sub csr_show_form {
after this (around line 150): foreach $line (@sourcelines) {
insert this: $line =~s/<%csr_key%>/$csr_key/isg;
That's all!
P.S. Is Michael still alive and kicking
because his site is down? His csr plugin is really great!