Erwin LEUBAZ wrote:
> > That looks OK (it's what I have too). What language parser do you
> > use, latin1 or russian?
>
> The site is in French so :
>
> The directive is "MidgardParser latin1"
OK, I'll need to recreate this. Can you send me a sample text you're
trying to insert,
and tell me where (which field of what type of record)?
BTW, you wrote earlier:
"After a migration from 1.4beta4 to 1.4beta5 the autentification
admin site
is OK (SG0), but for all other site groups the logon tell (???) and
can't
validate."
Your sitegroup table in the midgard database may be missing the realm
field.
You can verify it using the mysql client:
mysql -u midgard -p<whatever> midgard
mysql> describe sitegroup;
+------------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+------------+--------------+------+-----+---------+----------------+
| id | int(11) | | PRI | 0 | auto_increment |
| name | varchar(255) | | | | |
| admingroup | int(11) | | | 0 | |
| realm | varchar(255) | | | | |
+------------+--------------+------+-----+---------+----------------+
4 rows in set (0.01 sec)
mysql> quit;
Run 'database-upgrade' from the data package to add the column, or you
can do it by hand:
$ mysql -u root -p<whatever> midgard
mysql> ALTER TABLE sitegroup ADD COLUMN realm varchar(255) DEFAULT ''
NOT NULL;
mysql> quit;
Emile
--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org
To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]