[imp] No "Options" link in menu bar
Matjaz Kljun
matjaz.kljun at pef.upr.si
Wed Mar 10 11:21:45 PST 2004
I had the same problem ;) and I figured it out. You have to specify
that you'll store user's preferences in the DB. I't done in
path_to_horde/config/horde.php
-------------------------------------------------------------------
$conf['prefs']['driver'] = 'sql';
// Any parameters that the preferences driver needs. This includes
// database or ldap server, username/password to connect with, etc.
$conf['prefs']['params'] = array();
// This is an example configuration for a MySQL preference backend.
// The SQL script to setup the preference database is placed in
// horde/scripts/db/prefs.sql.
$conf['prefs']['params']['phptype'] = 'mysql';
$conf['prefs']['params']['hostspec'] = 'localhost';
$conf['prefs']['params']['username'] = 'horde';
$conf['prefs']['params']['password'] = 'horde';
$conf['prefs']['params']['database'] = 'horde';
$conf['prefs']['params']['table'] = 'horde_prefs';
-------------------------------------------------------------------
More information about the imp
mailing list