Forum Replies Created

Viewing 15 replies - 61 through 75 (of 79 total)
  • Plugin Author hoernerfranz

    (@hoernerfranz)

    hi Jonas,
    das sieht nicht so gut aus, entscheidend ist diese Zeile der Server-Antwort:
    exception>Sabre\DAV\Exception\ReportNotSupported

    das sieht so aus als ob der Server nicht dafür konfiguriert ist, den auf den request angeforderten Report zu liefern.

    vllt. ist aber auch nur die URL:
    https://nextcloud.myserver.de/remote.php/dav/
    falsch.
    (es gibt ja WebDav, CalDav und CardDav, evtl. muss man hier gezielt den CalDav Service ansprechen).
    Am besten erstmal mit einem CalDav Client (z.b. Thunderbird mit Lightning Plugin) verifizieren !

    • This reply was modified 6 years, 2 months ago by hoernerfranz.
    Plugin Author hoernerfranz

    (@hoernerfranz)

    Hallo Sven,
    du hast anscheinend noch nicht die aktuelle Version des Plugins (1.0.4 – diese speichert u.a. Username + Passwort nicht mehr ins Log).
    Bitte probiere die erstmal aus (ggf. Download von Hand, falls das Update im Backend nicht angezeigt wird).
    wenn das nicht funktioniert, bitte direkt via Mail melden.
    P.S.:
    Es gibt auch noch eine ganz aktuelle Entwicklungsversion auf GitHub – in dem Fall bitte den Abschnitt ‘FROM GITHUB’ im readme beachten !

    • This reply was modified 6 years, 2 months ago by hoernerfranz.
    Plugin Author hoernerfranz

    (@hoernerfranz)

    ok, that means, the alternative Tag (//calendar-data) is now recognized, but
    the following data extraction:
    $data = $xml->xpath($Tag);
    based on this Tag does not work – it results in an empty array $data() .
    I’ll then try to investigate that some more, which would be much easier if I had
    a (readonly) Testuser Account for that Server.
    is that possible with mailbox.org ?
    (if yes, you can send me the URL/Login data via private email here )

    Plugin Author hoernerfranz

    (@hoernerfranz)

    ok, Martin,
    lets start with a quick, ugly hack ?? – you can find a first test version
    here, it can be installed via Plugins – install – upload in the WP Backend .
    This might still not work as expected, but it produces an extended log,
    from which the part after the line ‘Tag:…’ will be the relevant part, please post this here.
    Also keep in mind, the test version does not contain all files from the full version, only a subset.
    it will only work if there is a previous version installed, not as a fresh installation on its own.

    Plugin Author hoernerfranz

    (@hoernerfranz)

    Hi md2002,
    thanks for posting the logfile content here without user/password ?? .
    (I think I should omit this in the log, although it also helped during development/debugging, but I see your point: so just create a log file for debugging purpose and then delete it for the time beeing…).
    As for the topic itself, I suppose the reason for the empty ics file is the somewhat strange answer from your CalDav Server (which brand is this ?).
    ATM, my parser is looking for Tags like
    ‘<c:calendar-data>’ or ‘<cal:calendar-data>’ to separate the actual ics data.
    (all CalDav servers I have encountered so far use one or the other)
    None of these can be found in your log, but
    ‘<calendar-data xmlns=”urn:ietf:params:xml:ns:caldav”>’ which is currently not recognized.
    The following ‘<![CDATA[…’ might also be problematic.
    Conclusion: I’ll have a closer look at this using the provided log data and eventually create a Test Version which you can then download an check if it works for you.
    might take some days, though…

    Plugin Author hoernerfranz

    (@hoernerfranz)

    closing as resolved now for the following reasons:
    1. issue is not reproducible, and nobody else reported it
    2. the OP is obviously not cooperative / not willing to follow proposals nor trying the latest version

    Forum: Plugins
    In reply to: [ICS Calendar] New Version
    Thread Starter hoernerfranz

    (@hoernerfranz)

    ok, here is the Github Link ??

    Plugin Author hoernerfranz

    (@hoernerfranz)

    ok,
    first try ??
    – could you please replace the original function in Caldav2ics_Plugin.php with the following code:

    
    protected function CheckMandatoryOptions(array $Options) {
        if (false == wp_http_validate_url($Options['CalendarURL'])) {
            return "Invalid Calendar URL:".$Options['CalendarURL'];
        }
        $Username = trim($Options['Username']);
        if (empty($Username))	{
            return "Invalid Username: ".$Options['Username'];
        }
        $Pwd = trim($Options['Password']);
        if (empty($Pwd))	{
            return "Invalid Password: ".$Options['Password'];
        }
        return '';
    }
    
    

    and then try again ?

    (or, alternatively, use the complete latest Version from here )

    • This reply was modified 6 years, 2 months ago by hoernerfranz.
    • This reply was modified 6 years, 2 months ago by hoernerfranz.
    Plugin Author hoernerfranz

    (@hoernerfranz)

    hm, strange,
    never had this issue here, and nobody else reported this…
    but wait, I found something related to this error
    here.
    I’ll have a closer look at this during the next days and then be back here.

    • This reply was modified 6 years, 2 months ago by hoernerfranz.
    Forum: Plugins
    In reply to: [ICS Calendar] New Version
    Thread Starter hoernerfranz

    (@hoernerfranz)

    well, that would be another option, right.
    but, ATM, there is always the direct download link on my own website, which I think can be found by people searching for ‘wordpress ics calendar’ (leading to this old WP Plugin, then read support forum..).
    anyways, I’ll have a look at how to publish something on github…

    Forum: Plugins
    In reply to: [ICS Calendar] New Version
    Thread Starter hoernerfranz

    (@hoernerfranz)

    Ok, thanks for the TGMPA proposal – didn’t know this, so far.
    And yes, of course you are free to add to/modify the ICS Calendar Plugin.
    Would be nice to post here when you have something new to check out…
    In general, I would have preferred if the original Author could have been reached and agreed to hand over maintainership.
    But as this does not seem to work out, I’ll just keep my own version alive on my website – I’m not intending to create a fork, nor ask the WP Plugin admins to transfer maintainership (which would be a rather tedious process, anyway).

    Forum: Plugins
    In reply to: [ICS Calendar] New Version
    Thread Starter hoernerfranz

    (@hoernerfranz)

    Hi,
    yes, this plugin is free, License GPLv3 – see file readme.txt.
    but no, bundling it with a theme is not a good idea, as zipped theme files are extracted to wp-content/themes, plugin files to wp-content/plugins by wordpress installer.
    also, activating themes is a different action from activating plugins (which would both be necessary, anyway).
    there is also an updated version out there, which, apart from fixing the BgCol issue ?? – has some more improvements, and a new, hidden feature: Month-specific calendar Pictures, see my own Calendar.

    Hi Niels,
    I know my post is totally O.T. here, but rather is related to your question here where answers are no longer possible.
    So I pirate this Topic here ?? to point you to Caldav2ics which might be just what you were looking for.

    • This reply was modified 6 years, 4 months ago by hoernerfranz.
    Thread Starter hoernerfranz

    (@hoernerfranz)

    ok, thanks for looking into this.
    and yes, the calendar page is a test page, but the site itself is not ?? .
    in fact, the site is rather old (starting 1996), using wordpress from early 2000 years.
    this is also the reason for still using the old, simple plain permalink structure.
    As I read, changing that, might cause all sorts of problems, 404’s etc. , see
    here.
    I’m not sure, though, but ATM, I won’t change that on the live-site, maybe make a local copy of it and try if everything still works ??

    • This reply was modified 6 years, 4 months ago by hoernerfranz.
    Thread Starter hoernerfranz

    (@hoernerfranz)

    sorry, my fault:
    Problem was the ics File, which showed issues with the ics Validator.
    (rendered correctly with other ical Plugins, though, so I did not realize this…).

Viewing 15 replies - 61 through 75 (of 79 total)