Hallo heiße Uwe,
beschäftige mich erst seit kurzrm mit OTRS...
Meine ein "Fehlerchen" in der Defaults.pm gefunden zu haben...
und zwar Zeile: 2286 + 2291
------------------------Snip-------------------------------------
else {
print STDERR "ERROR: Can't read $Self->{Home}/RELEASE: $! This file is needed by central system parts of OTRS, the system will not work without this file.\n";
die;
}
}
else {
print STDERR "ERROR: $Self->{Home}/RELEASE does not exist! This file is needed by central system parts of OTRS, the system will not work without this file.\n";
die;
}
-----------------------Snip-Ende-------------------------------
müsste es nicht heißen:
###########################
else {
print STDERR "ERROR: Can't read $Self->{Home}/RELEASE: $! This file is needed by central system parts of OTRS, the system will not work without this file.\n";
die "ERROR: $!\n";
}
}
else {
print STDERR "ERROR: $Self->{Home}/RELEASE does not exist! This file is needed by central system parts of OTRS, the system will not work without this file.\n";
die "ERROR: $!\n";
}
###########################
Grüße
Uwe