Koozali.org: home of the SME Server

Kronolith Public Calendar

Offline tec

  • **
  • 48
  • +0/-0
Kronolith Public Calendar
« on: December 05, 2006, 07:08:35 PM »
Hi,
I am trying to set up a public Calendar, which should work this way:
http://webmail.harrisonburg.k12.va.us/horde/kronolith/?public_calendar=test

I did the following:
1: logged in as a User and Shared my Calendar through
organizing>calendar>mycalendars
selected mycalendar and went to Permissions.

When I try to connect to this calender I will land on the login Page. I found out that I must give from the "Administrator Panel" Guest Accees to Kronolith.
Now how can I reach this Administrator Panel or give guest Access to Kronolith

Regards

Offline mrjhb3

  • *
  • 1,188
  • +0/-0
    • John Bennett Services
Re: Kronolith Public Calendar
« Reply #1 on: December 05, 2006, 07:40:56 PM »
Quote from: "tec"
Hi,
I am trying to set up a public Calendar, which should work this way:
http://webmail.harrisonburg.k12.va.us/horde/kronolith/?public_calendar=test

I did the following:
1: logged in as a User and Shared my Calendar through
organizing>calendar>mycalendars
selected mycalendar and went to Permissions.

When I try to connect to this calender I will land on the login Page. I found out that I must give from the "Administrator Panel" Guest Accees to Kronolith.
Now how can I reach this Administrator Panel or give guest Access to Kronolith

Regards


If you are using the horde 3.0.x rpms, then you need to edit horde/conf.php and add your user to the administrator section.  Then login as that user and you will have the administration option.

If you are using the horde 3.1.x rpms, this is already setup and you need to login as admin.

John
......

Offline tec

  • **
  • 48
  • +0/-0
Kronolith Public Calendar
« Reply #2 on: December 05, 2006, 09:12:35 PM »
Hi,
as I am pretty new to SME and Linux, could you post the path for the conf.php for Horde 3.0?
Regards

Offline mrjhb3

  • *
  • 1,188
  • +0/-0
    • John Bennett Services
Kronolith Public Calendar
« Reply #3 on: December 05, 2006, 09:19:44 PM »
Quote from: "tec"
Hi,
as I am pretty new to SME and Linux, could you post the path for the conf.php for Horde 3.0?
Regards


/home/httpd/html/horde/config

The particular section you need to edit is:
$conf['auth']['admins'] = array('');

If you want to make this permanent, then edit the template and add:
$conf['auth']['admins'] = array('admin@{$DomainName}');

expand-template /home/httpd/html/horde/config/conf.php

This will make your admin user an horde administrator.

HTH,

JB
......

Offline tec

  • **
  • 48
  • +0/-0
Kronolith Public Calendar
« Reply #4 on: December 05, 2006, 09:58:59 PM »
Thanks a lot for your Heldp  :D

Offline tec

  • **
  • 48
  • +0/-0
Kronolith Public Calendar
« Reply #5 on: May 26, 2007, 12:13:15 PM »
Hi I Setup my Public Calendar, and as a User I have defined Various Events in different Categories with different Colours.
The Problem is right now, that I only see the Categories and different Colours when I am logged in as a User.
But as you can see here http://webmail.harrisonburg.k12.va.us/horde/kronolith/?public_calendar=test

it should also be possible to see them as a Guest. But right now the Guest gets no Categories displayed.

Did someone has Categories working on a public Calendar?

Offline mrjhb3

  • *
  • 1,188
  • +0/-0
    • John Bennett Services
Kronolith Public Calendar
« Reply #6 on: May 26, 2007, 02:51:15 PM »
Quote from: "tec"
Hi I Setup my Public Calendar, and as a User I have defined Various Events in different Categories with different Colours.
The Problem is right now, that I only see the Categories and different Colours when I am logged in as a User.
But as you can see here http://webmail.harrisonburg.k12.va.us/horde/kronolith/?public_calendar=test

it should also be possible to see them as a Guest. But right now the Guest gets no Categories displayed.

Did someone has Categories working on a public Calendar?


Currently, categories only work on an individual basis, they don't span across users or groups.  Don't know if this feature will be added to the next version of kronolith either.

John
......

Offline Franco

  • *
  • 1,171
  • +0/-0
    • http://contribs.org
Kronolith Public Calendar
« Reply #7 on: May 26, 2007, 03:12:38 PM »
From:http://wiki.contribs.org/Email
add the admin user as an administrator for Horde

Code: [Select]

config setprop horde Administration enabled
signal-event email-update

Offline mrjhb3

  • *
  • 1,188
  • +0/-0
    • John Bennett Services
Kronolith Public Calendar
« Reply #8 on: May 26, 2007, 04:24:39 PM »
Quote from: "stuntshell"
From:http://wiki.contribs.org/Email
add the admin user as an administrator for Horde

Code: [Select]

config setprop horde Administration enabled
signal-event email-update


That doesn't do you any good.  All that does is allow the admin user the ability to do administrative stuff in horde.  Categories don't span across users, groups, calendars, etc.  

JB
......

Offline bloodshoteye

  • ****
  • 232
  • +0/-0
  • Grateful thanks to SME devs
Re: Kronolith Public Calendar
« Reply #9 on: December 29, 2007, 02:35:39 PM »
Hi,
Recently I applied categories and colors to the 200Personal custom fragment in horde. I have since changed my mind over certain categories and wish to edit or delete these, so I reverted the fragment to default.
Then I expanded all templates and did an e-mail update. Categories and colors still appear for users.
I thought I would delete these in the horde_prefs table, but looking at it with phpmyadmin I can't see where.
Any help, please?

Thanks,
SME Server is a fantastic product - thank you!

Offline mrjhb3

  • *
  • 1,188
  • +0/-0
    • John Bennett Services
Re: Kronolith Public Calendar
« Reply #10 on: December 29, 2007, 08:30:36 PM »
They are in the horde_prefs table and the pref_name is category_colors.  I see my custom catagories using this search from phpmyadmin

SELECT *
FROM `horde_prefs`
WHERE `pref_name` = 'category_colors'
LIMIT 0 , 30

John
......

Offline bloodshoteye

  • ****
  • 232
  • +0/-0
  • Grateful thanks to SME devs
Re: Kronolith Public Calendar
« Reply #11 on: December 29, 2007, 11:55:15 PM »
Quote
They are in the horde_prefs table and the pref_name is category_colors.
Many thanks  :smile:
SME Server is a fantastic product - thank you!