> Hi,
>
> I finally tracked down the problem to the fact, that squirrel is
> trying to cache the user preferences in dbPrefs.php and obviously
> fails, as there is NO record in the prefs table.
>
> It a new install and the address and user preferences tables are as
> empty as they get created due to the doc/db-backend.txt manual.
Chris, normally you should have nothing to do. It is expected to have
empty tables at start, of course, like file prefs.
Could you check with psql that you have something like:
=> \d userprefs
             Table "public.userprefs"
 Colonne  |          Type          | Modifications
----------+------------------------+---------------
 username | character varying(128) | not null
 prefkey  | character varying(64)  | not null
 prefval  | text                   |
Index: userprefs_pkey primary key btree (prefkey, username)
(without public. if pgsql <7.3.x).

Table and field names may vary, as they can be redefined in config.php:
$prefs_table = 'userprefs';
$prefs_user_field = 'username';
$prefs_key_field = 'prefkey';
$prefs_val_field = 'prefval';

HTH again ;)
Alex.



-------------------------------------------------------
This SF.Net email sponsored by: Parasoft
Error proof Web apps, automate testing & more.
Download & eval WebKing and get a free book.
www.parasoft.com/bulletproofapps1
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Reply via email to