Hello,
Using openser 1.0.1, I'm trying to add multi-domain support
using the module "domain".... so I created a database
in mysql, stuffed a few entries in it, pointed at it
in openser.cfg, and started openser.
I get this:
0(0) ERROR: domain:mod_init(): invalid table version (use ser_mysql.sh reinstall)
0(0) init_mod(): Error while initializing module domain
Now, I looked into openser_mysql.h and it has a table "version"
that lists versions for various databases:
INSERT INTO version VALUES ( 'subscriber', '5');
...
INSERT INTO version VALUES ( 'location', '1001');
INSERT INTO version VALUES ( 'aliases', '1001');
...
INSERT INTO version VALUES ( 'gw_grp', '1');
INSERT INTO version VALUES ( 'lcr', '1');
So, what exactly are these "versions"??
How is it possible that a new database that I create/name/point-at
should match something in this static list?
Thanks,
-mark