Announcement

Collapse
No announcement yet.

Thunderbird 17 und kein Sync mehr

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Thunderbird 17 und kein Sync mehr

    Hallo

    bis gestern lief TB und Lightning in der aktuellsten 16er Version problemlos. Nach dem Update auf TB17 und dem entspr. Update von Lightning ist der OX Kalender leer. Sowohl mit CalDAV als auch mit dem OXTender bleibt der Kalender leer. Es erscheint auch keine Fehlermeldung.

    Weiss jemand Abhilfe?

    Vielen Dank

  • #2
    Bei mir funktioniert Thunderbird 17 mit Lightning 1.9b2 korrekt.

    Update: Jetzt auch mit 1.9 (final) getestet und funktioniert immer noch.
    Last edited by Wolfgang Rosenauer; 11-21-2012, 07:36 PM.

    Comment


    • #3
      Das tritt bei uns jetzt bei jedem TB17 auf nach dem Update. Wie können wir das Problem denn lokalisieren, denn es wird ja kein Fehler ausgegeben. Es ist einfach so, dass der Kalender einfach leer ist im Lightning. Server ist OXASE Version : 6.20.7 Rev6 (2012-11-05 11:50:44) , OS ist Windows 7 Pro.

      Comment


      • #4
        Kann ich nur bestätigen - mit OXtender 1.11.0.1

        und OX Version: 6.22.1 Rev6 (2012-11-14 13:11:43) ist der Inhalt des Kalenders verschwunden...

        Gruß
        Peter

        Comment


        • #5
          Hi,

          I think I found the problem... In Lightning 1.9, the 'jsDateToDateTime' function has been renamed.

          So, to fix, you must change the name of the function in the file 'js/oxcalendarCommon.js' of oxtender to 'cal.jsDateToDateTime'
          After that, everything works perfectly

          Here the diff :

          Code:
          diff -Nru a/js/oxcalendarCommon.js b/js/oxcalendarCommon.js
          --- a/js/oxcalendarCommon.js    2012-03-30 16:09:10.000000000 +0200
          +++ b/js/oxcalendarCommon.js    2012-11-22 07:43:28.880487721 +0100
          @@ -1050,7 +1050,7 @@
            * @return A calIDateTime object
            */
           function date2dateTime(date, fullTime) {
          -       var localDateTime = jsDateToDateTime(date, calendarDefaultTimezone());
          +       var localDateTime = cal.jsDateToDateTime(date, calendarDefaultTimezone());
                  localDateTime.isDate = fullTime;
          
                  /*
          Please fix this upstream

          Comment


          • #6
            Hello,

            there is a simple reason for this...

            The developers of Lightning have changed a name of a variable.

            You have to edit a file in your extension directory of Oxtender.

            Search for oxcalendarCommon.js and open it in an editor.
            Locate line 1053: var localDateTime = jsDateToDateTime(date, calendarDefaultTimezone());

            Change jsDateToDateTime to cal.jsDateToDateTime

            Save it and start Thunderbird

            Synchronization should work now

            Regards
            Riker

            P.S. Two guys, one thinking...
            Last edited by Riker; 11-22-2012, 09:00 AM.

            Comment


            • #7
              thx
              but OX has to fix this on server side, because the problem also exist with CalDAV without OXTender

              Comment


              • #8
                We have added a new file https://www.assembla.com/spaces/open...ctor/documents called open-xchange-thunderbird-connector-1.18.0.1.xpi which has fixed the issue and should work with tb17 and ligntning 1.9

                Comment


                • #9
                  Danke, läuft bei mir.
                  Gruß Florian

                  Comment

                  Working...
                  X