Closed Thread
Page 6 of 9 FirstFirst ... 4 5 6 7 8 ... LastLast
Results 51 to 60 of 89

Thread: RoundCube Calendar (jQuery Calendar)

  1. #51
    lacri's Avatar
    lacri is offline Registered User
    Join Date
    Jan 2009
    Location
    Lutherstadt Wittenberg, Germany
    Posts
    179
    Downloads
    5
    Uploads
    0

    Default

    Feature Request: vcalendar (vcal) support
    add vcal events from email with vcal attachment or event to calendar

    and add Birthdays from Adressbook with additional Fields and Birtday field to calendar.

    i think vcal support is a cool feature or birtday fields in Addressbook and support from calendar for this

  2. #52
    Sypher is offline Roundcube Newcomer
    Join Date
    Jul 2008
    Posts
    1
    Downloads
    0
    Uploads
    0

    Thumbs up

    Really nice addon!
    This was most definitely a feature Roundcube was really missing.

    I would like to request a feature to be able to plug-in the calendar in my Thunderbird (with Lightning) so I my calendar items are synced.

    Also, it would be nice if you could make changes in the "desktop" calendar and seeing them changed in the webmail as well, so basicly synchronization. If this is not possible or falls outside your scope, downloading an ICS file from my server is possible so if the RC_Calendar supports it...
    I've seen you've got Caldav on the todo list, but thats quite an overkill. DAViCal for instance requires postgresql.

    After that, I calendar sharing would be pretty sweet too if this is possible. It'll make RC and the Calendar plugin more enterprise-ready.
    Last edited by Sypher; 02-22-2010 at 02:52 PM.

  3. #53
    katie is offline Roundcube Newcomer
    Join Date
    Nov 2009
    Location
    @ keyboard
    Posts
    5
    Downloads
    2
    Uploads
    0

    Default Postgres

    Hi Lazlo,

    my RC runs on PostgreSQL, I was able to set up the Tables, but table-operations dont work.
    Its running and I can see the demo-entries, but delete them or put new ones into the cal doesnt work, but shows no error either.

    Is there a chance to get it working on PGSQL?

    Here the init I used

    Code:
    -- PSQL Init for RC calender
    
    CREATE SEQUENCE webmail_event_ids
        INCREMENT BY 1
        NO MAXVALUE
        NO MINVALUE
        CACHE 1;
    
    CREATE TABLE webmail_events (
        event_id integer DEFAULT nextval('webmail_event_ids'::regclass) NOT NULL,
        user_id integer NOT NULL,
        "start" timestamp without time zone DEFAULT now() NOT NULL,
        "end" timestamp without time zone DEFAULT now() NOT NULL,
        "summary" character varying(255) NOT NULL,
        "description" text NOT NULL,
        "location" character varying(255) NOT NULL,
        "categories" character varying(255) NOT NULL,
        "all_day" smallint NOT NULL DEFAULT 0
    );
    
    CREATE INDEX webmail_events_event_id_idx ON webmail_events USING btree (event_id);
    
    
    --
    -- Constraints Table `events`
    --
    
    ALTER TABLE ONLY webmail_events
        ADD CONSTRAINT webmail_events_user_id_fkey FOREIGN KEY (user_id) REFERENCES webmail_users(user_id) ON UPDATE CASCADE ON DELETE CASCADE;

    --
    K.

  4. #54
    rosali's Avatar
    rosali is offline Super Moderator
    Join Date
    Dec 2007
    Location
    Germany
    Posts
    2,392
    Downloads
    36
    Uploads
    0

    Default

    Did you configure ./config/config.inc.php ? It looks like you run the "dummy" driver instead of the database driver.
    Regards,
    Rosali

    __________________
    MyRoundcube Project http://myroundcube.googlecode.com
    MyRoundcube Online Demo - Free Email Address http://mail4us.net
    MyRoundcube Plugins Generic Installation Guide http://mail4us.net/myroundcube/index.php
    Mailing List http://mail4us.net/?_action=plugin.nabble

  5. #55
    katie is offline Roundcube Newcomer
    Join Date
    Nov 2009
    Location
    @ keyboard
    Posts
    5
    Downloads
    2
    Uploads
    0

    Default

    An extra DB driver for calendar?

    RC runs fine on my postgres, its using the same DB like my mailserver does (thats why I have the webmail_ -prefix) even the mailadresses according to an account are correct fetched at 1st login.

    In calendear I set unlike default:

    Code:
    $rcmail_config['use_calendar'] = 'calendar';
    $rcmail_config['db_table_events'] = 'webmail_events';
    Did I miss something?


    K.
    Last edited by katie; 02-26-2010 at 09:16 PM. Reason: misspelling (why are the chars never on the keys I press?)

  6. #56
    rosali's Avatar
    rosali is offline Super Moderator
    Join Date
    Dec 2007
    Location
    Germany
    Posts
    2,392
    Downloads
    36
    Uploads
    0

    Default

    It does not support customizable table names (yet).
    Regards,
    Rosali

    __________________
    MyRoundcube Project http://myroundcube.googlecode.com
    MyRoundcube Online Demo - Free Email Address http://mail4us.net
    MyRoundcube Plugins Generic Installation Guide http://mail4us.net/myroundcube/index.php
    Mailing List http://mail4us.net/?_action=plugin.nabble

  7. #57
    katie is offline Roundcube Newcomer
    Join Date
    Nov 2009
    Location
    @ keyboard
    Posts
    5
    Downloads
    2
    Uploads
    0

    Default

    Thanks.

    I fixes that (renamed the table and the entry) - the other thing was that I didnt checked the new Calendar-Settings after loading the last version, mine were from initial setup.


    After fixing both the dummy-entries are gone, but I cant save entries, it says in the RC-Errortab: Service unavailable

    Mail still works.

  8. #58
    roe1234 is offline Registered User
    Join Date
    Dec 2008
    Posts
    20
    Downloads
    0
    Uploads
    0

    Default davical

    I see in trunk there is 'alpha' support for davical. Let me know if you'd like some help banging on it with davical. We have a small non-critical install of davical .9.8.3 that we can help test with.

  9. #59
    gznadroj is offline Roundcube Newcomer
    Join Date
    Mar 2010
    Posts
    2
    Downloads
    0
    Uploads
    0

    Default

    I've downloaded this and moved it to the plugins folder, added it to the plugins in main.inc.php, ran the SQL.. but I'm not seeing the Calender anywhere?

    Found it

    typos.. gotta love them
    Last edited by gznadroj; 03-06-2010 at 10:47 PM.

  10. #60
    rosali's Avatar
    rosali is offline Super Moderator
    Join Date
    Dec 2007
    Location
    Germany
    Posts
    2,392
    Downloads
    36
    Uploads
    0

    Default

    Regards,
    Rosali

    __________________
    MyRoundcube Project http://myroundcube.googlecode.com
    MyRoundcube Online Demo - Free Email Address http://mail4us.net
    MyRoundcube Plugins Generic Installation Guide http://mail4us.net/myroundcube/index.php
    Mailing List http://mail4us.net/?_action=plugin.nabble

Closed Thread
Page 6 of 9 FirstFirst ... 4 5 6 7 8 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts