[horde] can horde 2.1 work without using imp?

Darius Matuliauskas darius at lnk.lt
Tue Jul 9 14:43:39 PDT 2002


> Quoting Wo Chang <chang at nist.gov>:
> 
> > Do I suppose insert some values for the horde_users table first?
> > Otherwise there is nothing in there.  However, even I added a record
> > to the horde_user table, I still can't login. Somehow
> > horde/lib/Auth.php::checkAuth always return false.
> 
> Run the password through php's md5() function before inserting it into the 
> table, and you should be all set.
> 
> -chuck


And, as Wo quoted earlier, he has wrong table set for horde authentication:

$conf['auth']['params']['phptype'] = 'mysql';
$conf['auth']['params']['hostspec'] = 'localhost';
$conf['auth']['params']['username'] = 'xxxxx';
$conf['auth']['params']['password'] = 'zzzzz';
$conf['auth']['params']['database'] = 'horde';
$conf['auth']['params']['table'] = 'horde_prefs';

You should change the last line to 
$conf['auth']['params']['table'] = 'horde_users';

After chuck's suggestion and this, you should definitely be fine.

Darius.


More information about the horde mailing list