I did a fresh install removing 3.0 completely and now I run into an issue when trying to insert date values into the db (Oracle 11gR2).
OTRS 3.0 worked fine without setting NLS environment variables, but I've read other posts (and this FAQ) so I added to my Config.pm:
Code: Select all
$ENV{NLS_DATE_FORMAT} = 'YYYY-MM-DD HH24:MI:SS';
Code: Select all
C:\Programmi\OTRS\StrawberryPerl>perl C:\Programmi\OTRS\OTRS\bin\otrs.AddGroup.pl -n test
Code: Select all
ORA-01861: il valore non corrisponde alla stringa di formato (DBD ERROR: error possibly near <*> indicator at char 127 in 'INSERT INTO groups (name, comments, valid_id, create_time, create_by, change_time, change_by) VALUES (:p1, :p2, :p3, <*>'2011-12-01 14:21:03' , :p4, '2011-12-01 14:21:03' , :p5)'), SQL: 'INSERT INTO groups (name, comments, valid_id, create_time, create_by, change_time, change_by) VALUES (?, ?, ?, '2011-12-01 14:21:03' , ?, '2011-12-01 14:21:03' , ?)'
Any ideas?
Thanks!