• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Horde malfunction after upgrade

RutgerH

New Pleskian
Hi all,

We recently upgraded from plesk 9.3 to 9.5 .
After the upgrade the horde calendar is giving the error; ErrorDB Error: no such field and the calendar is empty.

We found the KB article for this issue on a Linux platform; http://kb.odin.com/en/8520

Is this also a issue known for Windows ? Or does someone can tell me how to fix the SQLite tables ?

The exact error that is displayed in de horde log file;

Jun 07 12:46:23 HORDE [error] [kronolith] DB Error: no such field: 1 ** SELECT event_id, event_uid, event_description, event_location, event_private, event_status, event_attendees, event_keywords, event_title, event_category, event_recurcount, event_recurtype, event_recurenddate, event_recurinterval, event_recurdays, event_start, event_end, event_alarm, event_modified, event_exceptions, event_creator_id FROM kronolith_events WHERE calendar_id = '[email protected]' AND ((event_end >= '2010-05-31 00:00:00' AND event_start <= '2010-07-07 00:00:00') OR (event_recurenddate >= '2010-05-31 00:00:00' AND event_start <= '2010-07-07 00:00:00' AND event_recurtype <> 0)) [nativecode=no such column: event_private] [pid 5952 on line 323 of "D:\vhosts\webmail\horde\kronolith\lib\Driver\sql.php"]


Thanks!
 
A parallels engineer fixed this issue;

There were missed the following columns in kronolith_events table of horde database:
event_private INT DEFAULT 0 NOT NULL,
event_recurcount INT,
 
This is a Windows related issue.

So the following columns were missing in thekronolith_events table of horde database:

event_private INT DEFAULT 0 NOT NULL,
event_recurcount INT,
 
Back
Top