Open ghost opened 8 years ago
Expected behaviour
Tell us what should happen
Actual behaviour
Tell us what happens instead
...
Browser log
xxxxxxx
Very helpful ......
BEGIN:VCALENDAR VERSION:2.0 PRODID:-//SabreDAV//SabreDAV//EN CALSCALE:GREGORIAN X-WR-CALNAME:Geburtstag X-APPLE-CALENDAR-COLOR:#ff0000 BEGIN:VEVENT DTSTART;VALUE=DATE:20160208 SUMMARY:Geburtstag Mama RRULE:FREQ=YEARLY;WKST=MO TRANSP:TRANSPARENT STATUS:CONFIRMED DURATION:P1D LAST-MODIFIED:20160209T053755Z DTSTAMP:20160209T053755Z CREATED:20160209T053755Z UID:13cfb9d5-5a6a-47d3-ac56-33e46d74c60a.1454996275336 END:VEVENT BEGIN:VEVENT DTSTART;VALUE=DATE:20160323 SUMMARY:Andy (Jessica) Birthday TRANSP:TRANSPARENT STATUS:CONFIRMED DTEND;VALUE=DATE:20160324 LAST-MODIFIED:20160325T110143Z DTSTAMP:20160325T110143Z CREATED:20160325T110143Z UID:6061267e-f39f-4f53-8c8b-376845ad69bf.1458903703278 END:VEVENT BEGIN:VEVENT DTSTART;VALUE=DATE:20160612 SUMMARY:Natalie Birthday TRANSP:TRANSPARENT STATUS:CONFIRMED DTEND;VALUE=DATE:20160613 LAST-MODIFIED:20160321T180801Z DTSTAMP:20160321T180801Z CREATED:20160321T180801Z UID:838f08b4-59f2-4600-a67b-91a301b3c16d.1458583681050 END:VEVENT BEGIN:VEVENT DTSTART:20150321 SUMMARY:Isi Duod's Birthday RRULE:FREQ=YEARLY DURATION:P1D UID:b100000367054245@facebook.com END:VEVENT BEGIN:VEVENT DTSTART:20150731 SUMMARY:Lena Maria's Birthday RRULE:FREQ=YEARLY DURATION:P1D UID:b100003033316888@facebook.com END:VEVENT
please fill out the entire issue template ...
Update Template!
I think I'm having the same issue.
I recently fresh installed ownCloud 9.0.1 and imported my calender data from ownCloud 8.2.3 (by exporting/importing them as ICS file). I've discovered that I can see all the events March 2016 onwards, but all the events prior to February 2016 seem not to be accessible.
The color icon on the left panel just keeps on spinning and the calender does not load when I go back, say, to February 2016.
UPDATE: I'm using Calender App 1.1 as well by the way.
UPDATE 2: My problem is also described in #389.
Same problem with me, except only for 2 of my 12 calendars! Reason unknown, since in OC 8.2.3 all calendars import and display without any problems and without any constraints! Calendar 1.1 :thumbsdown: :thumbsdown: :thumbsdown: regards, hitam4450
I just gave ownCloud 9.0.2 RC1 a try, but the problem still persists. I couldn't find a relevant message in owncloud.log
, however.
Can this be fixed before the 9.0.2 release? I would like to migrate to ownCloud 9 but this is really preventing me from doing so.
By trial and error, I was able to determine that #345 (https://github.com/owncloud/calendar/commit/f96517e90e973f9659bcb7ecfd85e109706c4c53) is triggering this issue. A possible regression.
Here is an error message from the browser log in Firefox (46.0):
TypeError: dtend.subtractDate is not a function app.js:3055:18
I think this bug is also related to #498, though not strictly a duplicate.
UPDATE: The same issue is being reported here: #491
dup of #491
nvm, @zirydy has a different issue
I now see /core/img/actions/error.svg
next to the title of my calendar with Calendar 1.2 when I go back to the month (February 2016) I was having a problem. How can I fix this issue?
Enable debug mode in ownCloud, go back to calendar, check browser console to see which event causes this error
Could you help me with the troubleshooting...? I found the following error message in the browser console:
Object { comp: Object, calendar: Object, etag: ""7b0313b22ee2631f20baceefd7bc8be0"", uri: "ownCloud-chymwm0wximxppcuq171z.ics" } app.js:2207:10 TypeError: dtend.subtractDate is not a function Stack trace: getTimeForRecurring@https://DOMAIN/owncloud/apps/calendar/js/public/app.js?v=2a7a489b658d9f34543b0602096bb3f2:3183:18 VEvent.prototype.getFcEvent/<@https://DOMAIN/owncloud/apps/calendar/js/public/app.js?v=2a7a489b658d9f34543b0602096bb3f2:3304:7 forEach@https://DOMAIN/owncloud/apps/calendar/js/vendor/angular/angular.js?v=2a7a489b658d9f34543b0602096bb3f2:322:11 VEvent.prototype.getFcEvent@https://DOMAIN/owncloud/apps/calendar/js/public/app.js?v=2a7a489b658d9f34543b0602096bb3f2:3295:4 Calendar/<.fcEventSource.events/</<@https://DOMAIN/owncloud/apps/calendar/js/public/app.js?v=2a7a489b658d9f34543b0602096bb3f2:2203:19 app.js:2206:10 Object { comp: Object, calendar: Object, etag: ""19c402c3b5d834c31cc53e432aac2301"", uri: "ownCloud-hjg79bh6rnl9azip6ppcdf.ics" }
I finally managed to pinpoint the cause of the problem and was able to fix it!
The error TypeError: dtend.subtractDate is not a function app.js:2206:10
was being caused by the way some of the events were saved by Calendar App (presumably in previous versions).
Some events in my calendar had values (in the ICS file) that look something like the following:
DTSTART;TZID=Europe/Berlin:20160519T010000
DTEND;TZID=Europe/Berlin;VALUE:20160519T020000
The problem was basically caused by the part Berlin;VALUE:
In order to fix this problem, DTEND needs to be formatted just like DTSTART. Once I modified these values in the ICS file to look like the following, the problem went away:
DTSTART;TZID=Europe/Berlin:20160519T010000
DTEND;TZID=Europe/Berlin:20160519T020000
As for the content of the ICS file posted above by @Iskenof, the problem is caused by these two values:
DTSTART:20150321
DTSTART:20150731
The problem should go away when they are corrected as follows:
DTSTART;VALUE=DATE:20150321
DTSTART;VALUE=DATE:20150731
I have the same issue : with an ics file generated from ownCloud web UI, every DTEND properties are written for example :
DTEND;VALUE=:20131119T110000Z
Whereas a right syntax should be :
DTEND:20131119T110000Z
If I replace every instance in the file according to this rule, I can import the calendar file in thunderbird without error. But of course I would appreciate to have working backups of my calendars without this manual fix...
Could anyone confirm if the following fix is OK ? I'm not comfortable with modifying ownCloud DB manually...
UPDATE oc_clndr_objects SET calendardata = REPLACE(calendardata, ';VALUE=:', ':');
Source : https://forum.owncloud.org/viewtopic.php?t=30145
After upgrading from 9 to OC 10.0.3 I faced same problem with error while exporting calendar. I corrected by executing SQL statement
UPDATE oc_calendarobjects SET calendardata = REPLACE(calendardata, ';VALUE=:', ':');
Please note the change in table name!
Where the erroneous entries coming from is hard to say, as with the OC calendar I have connected Win10-Calendar, Android-Calendar-App and Linux-Thunderbird. I will check if such entries re-appear.
LuLu
Steps to reproduce
Expected behaviour
Import ICS file to import into Calendar APP
Import Error
Actual behaviour
geburtstag.ics
Teilweise importiert , 304 Fehler
Server configuration
Operating system: Ubuntu 14.04 Web server: nginx 1.4.6 Database: mysql 5.5.47 PHP version: php5-fpm 5.6.2 ownCloud version: (see ownCloud admin page) ownCloud 9.0.1 (stable) Calendar version: (see ownCloud apps page) 1.1 Updated from an older ownCloud or fresh install: Update from 8.2.3.2 owncloud Signing status (ownCloud 9.0 and above): success