[imp] Updating Pear on a RH7.2 system
   
    René Lund Jensen
     
    lundeman@tbkol.dk
       
    Sat, 3 Nov 2001 16:48:52 +0100
    
    
  
> //The auth section
> $conf['auth']['driver'] = 'sql';
> $conf['auth']['params'] = array();
> $conf['auth']['params']['phptype'] = 'mysql';
> $conf['auth']['params']['hostspec'] = 'localhost';
> $conf['auth']['params']['username'] = 'hordemgr';
> $conf['auth']['params']['password'] = '*****';
> $conf['auth']['params']['database'] = 'horde';
> $conf['auth']['params']['table'] = 'horde_users';
>
> //The preferences section
> $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';
With PostgreSQL i had to put a protocol into these params like this:
$conf['auth']['params']['protocol']  = 'unix';
and:
$conf['prefs']['params']['protocol']  = 'unix';
René