David Sean Taylor wrote:
>
> Have you double-checked that the user is created

The user isn't created.

> Did you run the latest turbine-oracle.sql script to create the database?

I checked: my sql script is adapted to my situation, but it should work.
You can find it here if you want to check:
http://www.lowagie.com/bruno/turbine-oracle.sql
http://www.lowagie.com/bruno/default_roles_permissions.sql
http://www.lowagie.com/bruno/privileges-jetspeed.sql

Are you sure the code doesn't do something like this:
insert into TURBINE_USER (LOGIN_NAME, PASSWORD_VALUE, FIRST_NAME,
LAST_NAME, EMAIL, CONFIRM_VALUE ) values ( 'test', 'test', 'my', 'test',
'[EMAIL PROTECTED]', 'CONFIRMED' );

Instead of:
insert into TURBINE_USER (USER_ID, LOGIN_NAME, PASSWORD_VALUE,
FIRST_NAME, LAST_NAME, EMAIL, CONFIRM_VALUE, CREATED ) values
(turbine_user_seq.nextval, 'test', 'test', 'my', 'test',
'[EMAIL PROTECTED]', 'CONFIRMED', SYSDATE );

I will try to have a look in the code where the insert should happen
and add some more comment in the hope to find what's wrong.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to