HORDE [emergency] [imp] DB Error: insufficient permissions

Charly Root root at papendorf-se.de
Fri Dec 13 10:25:12 PST 2002


I think this is probably because the default horde prefs use 'hordemgr' as 
username but the mysql_create.sql uses 'horde', the mysql_create.sql should 
look something like this:

REPLACE INTO user (host, user, password)
    VALUES (
        'localhost',
        'hordemgr',
  -- IMPORTANT: Change this password!
        password('secret')
    );


REPLACE INTO db (host, db, user, select_priv, insert_priv, update_priv,
                 delete_priv, create_priv, drop_priv)
    VALUES (
        'localhost',
        'horde',
        'hordemgr',
        'Y', 'Y', 'Y', 'Y',
        'Y', 'Y'
    );

FLUSH PRIVILEGES;


More information about the imp mailing list