Author Topic: Calendar PlugIn  (Read 88246 times)

Offline subzonic

  • Newbie
  • *
  • Posts: 1
Wow Sounds Good
« Reply #30 on: May 07, 2008, 05:40:35 AM »
Great job. :D

Offline truderinger

  • Newbie
  • *
  • Posts: 2
SERVICE CURRENTLY NOT AVAILABLE! Error No. 1f4)
« Reply #31 on: May 23, 2008, 05:11:57 AM »
Hallo,

thanks to rccalendar. I install rcc and I see this. I click on the button writte and the system say

SERVICE CURRENTLY NOT AVAILABLE!

Error No. 1f4)


My roundcube works very fine. I fond this with google:

-------------------------------------
Check your MYSQL table 'users' under the 'preferences' field, it is set to NOT NULL to begin with, however the INSERT string that creates a users upon login doesn't populate the field, therefore we have to change the table structure to the following...

CREATE TABLE users (

    user_id int(10) UNSIGNED NOT NULL AUTO_INCREMENT, username varchar(128) NOT NULL, mail_host varchar(128) NOT NULL, alias varchar(128) NOT NULL, created datetime NOT NULL DEFAULT '0000-00-00 00:00:00', last_login datetime NOT NULL DEFAULT '0000-00-00 00:00:00', language varchar(5) NOT NULL DEFAULT 'en', preferences text NOT NULL DEFAULT , PRIMARY KEY(user_id)

) TYPE=MYISAM CHARACTER SET utf8 COLLATE utf8_general_ci;
----------------------------------

My database is o.k.. Whats wrong? Thanks for our help!

Jimi Bondi
« Last Edit: May 24, 2008, 02:37:14 AM by truderinger »

Offline stefa.rossi

  • Newbie
  • *
  • Posts: 1
Webmail
« Reply #32 on: August 29, 2008, 06:29:51 PM »
Is there a calendar for Roundcube Webmail v0.2-alpha?

Offline lacri

  • Full Member
  • ***
  • Posts: 179
    • http://www.php-lexikon.de
Calendar PlugIn
« Reply #33 on: July 02, 2009, 07:05:12 AM »
has anyone this great plugin for RC 0.2.2 or 0.3 ?
i think this is a beautifull calendar script for RC.

looks been a little bit nicer more than the calendar from myroundcube

Offline lacri

  • Full Member
  • ***
  • Posts: 179
    • http://www.php-lexikon.de
Calendar PlugIn
« Reply #34 on: July 02, 2009, 10:06:30 AM »
i have ported this to the current SVN ... hmm calender dosnt work the iframe is empty no javascript or php errors ... i have add to func the output handlers

$OUTPUT
->add_handlers(array(
  
'calendarframe' => 'rcmail_calendar_frame',
        
'calendarlist' => 'rcmail_calendar_list',
        
'daycontent' => 'rcmail_day_content',
        
'weekcontent' => 'rcmail_week_content',
        
'monthcontent' => 'rcmail_month_content',
        
'seteventbuttons' => 'rcmail_set_event_buttons',
        
'createeventformstart' => 'rcmail_create_event_form_start',
        
'createeventformend' => 'rcmail_create_event_form_end'
        
));


and i remove the parse_template calls and add the $OUTPUT->send(); calls only the calendar admin page will work i have also create a calendar and is correct in the DB.

Only by opening the page is nothing shown.

Offline lacri

  • Full Member
  • ***
  • Posts: 179
    • http://www.php-lexikon.de
Calendar PlugIn
« Reply #35 on: July 07, 2009, 06:41:35 AM »
now works the port, and i work on some improvements.

here is a screenshoot of current status ... :)

when is finish i will post the calendar files with changes
« Last Edit: February 02, 2010, 11:20:33 AM by lacri »

Offline lacri

  • Full Member
  • ***
  • Posts: 179
    • http://www.php-lexikon.de
Calendar PlugIn
« Reply #36 on: July 22, 2009, 05:41:56 AM »
here is a new screenshoot to show the current status

mass little style optimizations
new see week number
higlight weekends and current day
and many other

since now RC 0.3 trunk supports in the API new Tasks
i will port this PlugIn into API as new Styled API PlugIn.
« Last Edit: February 02, 2010, 11:20:33 AM by lacri »

Offline alo

  • Newbie
  • *
  • Posts: 1
Calendar PlugIn
« Reply #37 on: September 23, 2009, 07:54:07 AM »
Hi,
there some news about rccalendar for rc 0.3 and php5. Could i help in some way?

thanks,
alo

Offline flattery

  • Jr. Member
  • **
  • Posts: 17
Calendar PlugIn
« Reply #38 on: November 12, 2009, 10:00:12 PM »
So how many years does it take to actually make a plugin.  I am assuming that after this much time that it is actually abandoned.

I am unable to find a calendar plugin for RoundCube which really surprises me as a calendar is hugely integral with webmail.  Gmail, Hotmail, Outlook, and so on... they all have calendars.

So since no one else is up to this task I guess I will need to start working on one if I don't find one soon and it won't take years to get into a usable plugin.

Offline toetag

  • Jr. Member
  • **
  • Posts: 65
Calendar PlugIn
« Reply #39 on: November 13, 2009, 12:11:42 AM »
<[ a desert to an irishman is an empty glass. ]>

Offline flattery

  • Jr. Member
  • **
  • Posts: 17
Calendar PlugIn
« Reply #40 on: November 13, 2009, 08:55:35 AM »
I did a little bit, but it doesn't seem to integrate well.  Even on the demo you have to login to webcalendar separately.

Unless I am wrong. Perhaps I am missing something or some setting, but I am looking for something to be seamless.

Offline flattery

  • Jr. Member
  • **
  • Posts: 17
How to get current user
« Reply #41 on: November 13, 2009, 12:23:02 PM »
I thought I had it working seamless with some code modification, but I was apparently wrong in thinking that $_SESSION['validuser'] gives me a unique ID for the current user.

I assumed this was the variable to use, but when I logged in with two different users I got the same variable.

So can anyone tell me how to get the id or username or something unique for the current user?  I have been searching the code and trying things but nothing that I find seems to work.

Offline flattery

  • Jr. Member
  • **
  • Posts: 17
Calendar PlugIn
« Reply #42 on: November 13, 2009, 02:46:37 PM »
Well I got it to work for me seamlessly.  Had to hack up the code a little since I don't know how to grab the user_id, but it works.

Just through in a cookie to initialize the current user_id and then grabbed it in webcalendar.

Nice calendar when it works right.

Offline rosali

  • Hero Member
  • *****
  • Posts: 2,533
Calendar PlugIn
« Reply #43 on: November 14, 2009, 12:57:20 AM »
Please post your hacks!
Regards,
Rosali
__________________
MyRoundcube Project (commercial)

Offline flattery

  • Jr. Member
  • **
  • Posts: 17
Calendar PlugIn
« Reply #44 on: November 14, 2009, 07:53:55 PM »
Well basically I set it up as single user mode and then in the config.php file I set the user.

I will post my hack in a few days when I get some time, but it does need a little more work and it is definitely a hack.