
Marco Geweke schrieb:
Got no MainObject! at /opt/otrs/bin/cgi-bin/../../Kernel/System/DB.pm line 84
Ich hab das Problem offenbar beseitigt. In Kernel/System/CustomerUser/DB.pm muss eine Zeile in Zeile 64 eingefügt werden: ---- # create new db connect if DSN is given if ($Self->{CustomerUserMap}->{Params}->{DSN}) { $Self->{DBObject} = Kernel::System::DB->new( LogObject => $Param{LogObject}, MainObject => $Param{MainObject}, ### <--- missing line ConfigObject => $Param{ConfigObject}, DatabaseDSN => $Self->{CustomerUserMap}->{Params}->{DSN}, DatabaseUser => $Self->{CustomerUserMap}->{Params}->{User}, DatabasePw => $Self->{CustomerUserMap}->{Params}->{Password}, Type => $Self->{CustomerUserMap}->{Params}->{Type} || '', ) || die ('Can\'t connect to database!'); # remember that we have the DBObject not from parent call $Self->{NotParentDBObject} = 1; } ---- Danach klappt es anscheinend. Gruß Marco