I have a Server with a lot of people missing in the Webfrontend, but
the exist in Unix.
I tried to create my own /usr/sausalito/codb/objects/<free_id> and
add it to /usr/sausalito/codb/codb.oids.
I guess I have to rebuild /usr/sausalito/codb/db.classes, but how do
I do that?
Anaother Solution would be a new meta-verify.pl like in RaQ2 ... I
think ?!?
I have tried something like this in perl put i got "unexpected file
type or format":
#!/usr/bin/perl
use strict ;
use BerkeleyDB ;
use vars qw( %h ) ;
my $filename = "db.classes";
tie %h, 'BerkeleyDB::Btree',
-Filename => $filename,
-Flags => DB_RDONLY
or die "Cannot open file $filename: $! $BerkeleyDB::Error\n" ;
Any suggestion?
tmueko