Chuck Hagenbuch | 1 Aug 2003 02:42
Favicon
Gravatar

Re: [turba] issue when I change the priviledges

Why was this sent to the Turba mailing list? There's a Kronolith mailing list.

Quoting steve <smailling <at> free.fr>:

> I have a shared calendar, I wanted to add to a group 'patients' the EDIT
> property. I chosed the group from the drop down list, and I got the error:
> Fatal error: Call to a member function on a non-object in
> C:\devl\horde\lib\Group.php on line 174

Try updating from CVS again.

-chuck

--
Charles Hagenbuch, <chuck <at> horde.org>
They're just looking at a wall of meat.

--

-- 
Kronolith mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: kronolith-unsubscribe <at> lists.horde.org

Chuck Hagenbuch | 1 Aug 2003 02:43
Favicon
Gravatar

Fwd: [turba] question about free/busy


----- Forwarded message from smailling <at> free.fr -----
    Date: Fri, 01 Aug 2003 00:51:26 +0200
    From: steve <smailling <at> free.fr>
Reply-To: steve <smailling <at> free.fr>
 Subject: [turba] question about free/busy
      To: turba <at> lists.horde.org

Hello,

I would like some users to be able to see a calendar, but just the
free/busy information. Also, they have to be able to add an event to it (or
through an invitation of an event). Do you have any idea how to do this?

Thanks

Steve

--
Turba mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: turba-unsubscribe <at> lists.horde.org

----- End forwarded message -----

-chuck

--
Charles Hagenbuch, <chuck <at> horde.org>
They're just looking at a wall of meat.
(Continue reading)

Chuck Hagenbuch | 1 Aug 2003 03:23
Favicon
Gravatar

Re: Fwd: Re: problems with groups

Quoting Mark <xa87n <at> yahoo.com>:

> Is there a way to disable / not show "Default permissions" (and maybe
> Guest Permissions) under "Edit Permissions" menu for kronolith? That
> way nobody can by mistake select it and open the calendar to everyone.

No, not currently.

-chuck

--
Charles Hagenbuch, <chuck <at> horde.org>
They're just looking at a wall of meat.

--

-- 
Kronolith mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: kronolith-unsubscribe <at> lists.horde.org

Jan Schneider | 1 Aug 2003 11:01
Favicon
Gravatar

Re: Fwd: [turba] question about free/busy

Zitat von Chuck Hagenbuch <chuck <at> horde.org>:

>
>
> ----- Forwarded message from smailling <at> free.fr -----
>     Date: Fri, 01 Aug 2003 00:51:26 +0200
>     From: steve <smailling <at> free.fr>
> Reply-To: steve <smailling <at> free.fr>
>  Subject: [turba] question about free/busy
>       To: turba <at> lists.horde.org
>
> Hello,
>
> I would like some users to be able to see a calendar, but just the
> free/busy information. Also, they have to be able to add an event to it
> (or
> through an invitation of an event). Do you have any idea how to do this?

Give them "show" and "add" rights.

Jan.

--
http://www.horde.org - The Horde Project
http://www.ammma.de - discover your knowledge
http://www.tip4all.de - Deine private Tippgemeinschaft

--

-- 
Kronolith mailing list
Frequently Asked Questions: http://horde.org/faq/
(Continue reading)

Adrian DeBoer | 2 Aug 2003 05:14
Picon
Favicon

working sample conf.php

Can I see someone's working /kronolith/config/conf.php
script??  

Thanks,

Adrian

__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

--

-- 
Kronolith mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: kronolith-unsubscribe <at> lists.horde.org

Gary Smith | 2 Aug 2003 23:41

RE: working sample conf.php

The login, password and SQL server need to be tweaked but this is straight form the documents and works for
me.  Please print all of the install docs usually located where like product/docs/INSTALL.  They seem to be
thorough enough to get it to work for us.

$conf['calendar']['driver'] = 'sql'; 

$conf['calendar']['params']['driver'] = 'mstore'; 

// The mstore driver requires a username and a password that is in 
// /etc/mpasswd in order to access local calendars. 
$conf['calendar']['params']['username'] = ''; 
$conf['calendar']['params']['password'] = ''; 

// This is an example configuration for an sql driver, in this case MySQL. 
$conf['calendar']['params']['phptype'] = 'mysql'; 
$conf['calendar']['params']['hostspec'] = 'yoursqlserverhere; 
$conf['calendar']['params']['username'] = 'horde'; 
$conf['calendar']['params']['password'] = '*****'; 
$conf['calendar']['params']['database'] = 'hordepublic'; 
$conf['calendar']['params']['table'] = 'kronolith_events'; 

$conf['metadata']['keywords'] = false; 

/** 
 ** Menu settings 
 **/ 

$conf['menu']['import_export'] = true; 

$conf['menu']['apps'] = array('imp','turba');
(Continue reading)

steve | 2 Aug 2003 13:44
Picon
Favicon

Re: Import / export desig

I am sorry to make the answer just now.
What I am talking is not yet implemented, it is more about chaing all the 
import/export feature.
Let's try to explain it.
What are the differences between import/export and working with a driver 
(sql, mcql, ...)? For me, none.
I could work with a csv driver instead of sql, I may be interested in a sql 
export of my events.

How to do that?
Move the export/import code into the kronolith/lib/Driver section.

What are the real benefites?
We could add a yahoo driver to manage some calendars, and moving events 
from/to kronolith/yahoo would be very easy. The code is in one place.

>Zitat von steve <smailling <at> free.fr>:
>
> > I have a design isssue about the import/export feature.
> > Why would not  we add 2 new drivers (csv file and Palm format)?
>
>The CSV driver is the first import/export driver we ever had. The Palm
>driver is also there but hasn't been ported to the Horde_Data framework.
>Tested patches are welcome.
>
> > Then, we could change the import/export jobs to:
> > - import from one driver
> > - export to another driver
> > In fact, import and export will be the same code (ie. to export, it is
> > import from the ical driver and export to the csv driver)
(Continue reading)

Jan Schneider | 4 Aug 2003 11:02
Favicon
Gravatar

Re: Re: Import / export desig

Zitat von steve <smailling <at> free.fr>:

> I am sorry to make the answer just now.
> What I am talking is not yet implemented, it is more about chaing all the
> import/export feature.
> Let's try to explain it.
> What are the differences between import/export and working with a driver
> (sql, mcql, ...)? For me, none.
> I could work with a csv driver instead of sql, I may be interested in a
> sql
> export of my events.
>
> How to do that?
> Move the export/import code into the kronolith/lib/Driver section.
>
> What are the real benefites?
> We could add a yahoo driver to manage some calendars, and moving events
> from/to kronolith/yahoo would be very easy. The code is in one place.

I'm still not sure what you aim to, but it sounds like you want to write
another storage driver for Kronolith. Still doesn't have anything to do
with exports.

Jan.

--
http://www.horde.org - The Horde Project
http://www.ammma.de - discover your knowledge
http://www.tip4all.de - Deine private Tippgemeinschaft

(Continue reading)

Mark Toomey | 7 Aug 2003 18:56
Picon

Call to undefined function

Hey folks,

Here's my setup:

Horde: 2.2.3 
IMP: 3.2.1 (run IMP tests) 
Forwards: 2.2 
Passwd: 2.2 
Turba: 1.2 
Vacation: 2.2 
Kronolith: 1.0 
Mnemo: 1.1 
Nag: 1.1 

Just installed Kronolith on Redhat 9 box using RPMkronolith-1.0-2.noarch.rpm

Did the configs for MySQL, but when I click on kronolith I get 

Fatal error: Call to undefined function: iswarning() in
/www/horde/kronolith/lib/Driver/sql.php on line 64

Is that earlier version of Kronolith not supported under Horde 2.2.3??

--

-- 

Mark Toomey, Systems & Network Manager
Family & Consumer Sciences, UGA
mark at fcs dot uga dot edu: Yahoo IM: mark_toomey
Owner: USG-TECH & COOLTECH Listservs
voice:706-542-4738 - fax:706-542-4168
(Continue reading)

Mark Toomey | 7 Aug 2003 19:02
Picon

Re: Call to undefined function

On Thu, Aug 07, 2003 at 12:56:18PM -0400, Mark Toomey wrote:
> Hey folks,
> 
> Here's my setup:
> 
> Horde: 2.2.3 
> IMP: 3.2.1 (run IMP tests) 
> Forwards: 2.2 
> Passwd: 2.2 
> Turba: 1.2 
> Vacation: 2.2 
> Kronolith: 1.0 
> Mnemo: 1.1 
> Nag: 1.1 
> 
> 
> Just installed Kronolith on Redhat 9 box using RPMkronolith-1.0-2.noarch.rpm
> 
> Did the configs for MySQL, but when I click on kronolith I get 
> 
> Fatal error: Call to undefined function: iswarning() in
> /www/horde/kronolith/lib/Driver/sql.php on line 64
> 
> Is that earlier version of Kronolith not supported under Horde 2.2.3??

Answered my own question - put the 1.1 tarball in place and it works fine.

--

-- 

Mark Toomey, Systems & Network Manager
(Continue reading)


Gmane