@sdetweil thanks for all the help… I have it working now… Just went out and copied a new ics link and that seem to fix it…
Read the statement by Michael Teeuw here.
Posts
-
RE: Calendar Module intermittently stop working
-
RE: Calendar Module intermittently stop working
@sdetweil ok i am lost here… Thanks for being patient with me… Yes PM2 start it so I should do that?
-
RE: Calendar Module intermittently stop working
@sdetweil yes… so i am setup using rdp into the PI and then open up a terminal window then do a npm start in the MM directory.
-
RE: Calendar Module intermittently stop working
@sdetweil OK… not sure what this is giving me… Now I have only the one instance started…But I still don’t see an error. listen EADDRINUSE: address already in use 127.0.0.1:8087
-
RE: Calendar Module intermittently stop working
@sdetweil
i am getting the following error on the IP and port I changed it but still the same error. -
RE: Calendar Module intermittently stop working
@sdetweil i check the install log and nothing in it about errors… I also open the debug console but not sure what I am looking for in it.
-
RE: Calendar Module intermittently stop working
@sdetweil I am getting the following error "Error in the calendar module. Check logs for more details. I don’t see an error log for the calendar to see what the issue might be… After a few minutes, it will display the calendar. Then after a couple of seconds display the same error again.
-
Calendar Module intermittently stop working
Re: [Calendar Event Display start and end date](/topic/15523/calend```
code_text -
RE: Display start time and end time on meetings
@sdetweil OK not sure if this is part of it or not but if I make an appointment it doesn’t show up on the mm calendar but if I do it as an event it will.

-
RE: Display start time and end time on meetings
@sdetweil I did and for events now it’s all working great but start time and end time on meetings doesn’t have times on it… I don’t need times on all day events.

-
Display start time and end time on meetings
Re: How to display start and end times/dates of events in calendar I’ve not been able to get the start time and end time on meetings in the calendar.

-
RE: Calendar Event Display start and end date
@sdetweil Ok i think i got it now…
if (this.config.showEnd) {
timeWrapper.innerHTML += “-”;
timeWrapper.innerHTML += this.capFirst(moment(event.endDate, “x”).format(this.config.dateEndFormat));
} else
// For full day events we use the fullDayEventDateFormat
if (event.fullDayEvent) { -
RE: Calendar Event Display start and end date
@sdetweil if (this.config.timeFormat === “absolute”) {
// Use dateFormat
timeWrapper.innerHTML = this.capFirst(moment(event.startDate, “x”).format(this.config.dateFormat));
// Add end time if showEnd
if (this.config.showEnd) {
timeWrapper.innerHTML += “-”;
timeWrapper.innerHTML += this.capFirst(moment(event.endDate, “x”).format(this.config.dateEndFormat));
}
// For full day events we use the fullDayEventDateFormat
if (event.fullDayEvent) {
//subtract one second so that fullDayEvents end at 23:59:59, and not at 0:00:00 one the next day
event.endDate -= oneSecond;
timeWrapper.innerHTML = this.capFirst(moment(event.startDate, “x”).format(this.config.fullDayEventDateFormat));
} -
RE: Calendar Event Display start and end date
@sdetweil Don’t think i am doing this right as it’s not loading the calendar.js file now… Do I just copy this to the bottom of the file the same it?
-
Calendar Event Display start and end date
Re: How to display start and end times/dates of events in calendarI’ve not been able to set all-day events to display start and end dates. Any guidance here?
-
RE: Google Task module
I looked through the log and don’t see anything that would be an issue…
“loader.js:184 Load script: modules/MMM-GoogleTasks/MMM-GoogleTasks.js
:8080/modules/MMM-GoogleTasks/MMM-GoogleTasks.js:7 Uncaught SyntaxError: Unexpected identifier
loader.js:184 Load script: modules/default/updatenotification/updatenotification.js” -
RE: Google Task module
that worked perfectly and i was able to set the header etc all looks great now… But this morning when I started my Google task nothing is showing now… Do you have any tips on trouble shooting modules that use an API ?

