[imp] imp 2.3 preferences, charset and fonts

Max Kalika max@the-triumvirate.net
Sat, 31 Mar 2001 07:37:24 -0800


Quoting Bartosz Aninowski <bart@sonik.pl>:

> $conf['prefs']['driver'] = 'mysql';
> 
> Is there something else I should configure?

I highly recommend switching to the 'sql' driver because the backend-specific 
drivers have gone away in favor of the general sql driver.  The configuration 
items are as follows:

$conf['prefs'] = array();
$conf['prefs']['driver'] = 'sql';
$conf['prefs']['params'] = array();
$conf['prefs']['params']['phptype'] = 'mysql';
$conf['prefs']['params']['hostspec'] = 'localhost';
$conf['prefs']['params']['username'] = 'hordemgr';
$conf['prefs']['params']['password'] = '********';
$conf['prefs']['params']['database'] = 'horde';
$conf['prefs']['params']['table'] = 'horde_prefs';

--mk23