Difference between revisions of "Horde change default theme"

From SME Server
Jump to navigationJump to search
m (Minor text changes)
(Minor text changes)
Line 35: Line 35:
 
  signal-event email-update
 
  signal-event email-update
  
5. Enjoy
+
----
 
 
 
<noinclude>[[Category:Howto]]</noinclude>
 
<noinclude>[[Category:Howto]]</noinclude>

Revision as of 19:37, 11 June 2009

Instructions

Extracted from http://forums.contribs.org/index.php/topic,32920.msg145942.html#msg145942

1. Log in (with username root) to the SMEserver console.

2. Enter the following at the console prompt.

mkdir -p /etc/e-smith/templates-custom/home/httpd/html/horde/config/prefs.php
cd /etc/e-smith/templates-custom/home/httpd/html/horde/config/prefs.php
cp /etc/e-smith/templates/home/httpd/html/horde/config/prefs.php/200personal .
nano -w 200personal

3. Edit 'value' to the name of the theme you want. The default is 'bluewhite'

// UI theme
$_prefs['theme'] = array(
    'value' => 'bluewhite',
    'locked' => false,
    'shared' => true,
    'type' => 'select',
    'desc' => _("Select your color scheme.")
);

If you choose the simplex theme, this is how the section should look

// UI theme
$_prefs['theme'] = array(
    'value' => 'simplex',
    'locked' => false,
    'shared' => true,
    'type' => 'select',
    'desc' => _("Select your color scheme.")
);

4. Make the change to take effect.

signal-event email-update