Hello. I just downloaded the 0.9.0 SER version from CVS and compile it without problem. I used and old, but working (with the 0.8.14 version) ser.cfg file with the new SER version, when i start ser i see this ERROR: 0(0) DEBUG: init_mod: domain 0(0) domain - initializing 0(0) find_mod_export: <db_use_table> in module /usr/local/etc/ser/domaintables not found 0(0) bind_dbmod: Module /usr/local/etc/ser/domaintables does not export db_use_table function 0(0) ERROR: domain_db_bind: cannot bind to database module! Did you forget to load a database module ? 0(0) init_mod(): Error while initializing module domain ERROR: error while initializing modules
The ser.cfg snippet for the domain initialization is :
#module domain modparam("domain", "db_url", "/usr/local/etc/ser/domaintables") modparam("domain", "domain_table", "domain") modparam("domain", "domain_col", "domain")
My /usr/local/etc/ser/domaintables path is ok....
I'm not so sure but is this a version problem or am i missing something?.
Thanks in advance.
Ricardo Martinez.-
Hi Ricardo,
you have to specify in your DB URL the DB module to be used. See inline correction.
Best Regards, Marian
Ricardo Martinez wrote:
Hello. I just downloaded the 0.9.0 SER version from CVS and compile it without problem. I used and old, but working (with the 0.8.14 version) ser.cfg file with the new SER version, when i start ser i see this ERROR: 0(0) DEBUG: init_mod: domain 0(0) domain - initializing 0(0) find_mod_export: <db_use_table> in module /usr/local/etc/ser/domaintables not found 0(0) bind_dbmod: Module /usr/local/etc/ser/domaintables does not export db_use_table function 0(0) ERROR: domain_db_bind: cannot bind to database module! Did you forget to load a database module ? 0(0) init_mod(): Error while initializing module domain ERROR: error while initializing modules
The ser.cfg snippet for the domain initialization is :
#module domain modparam("domain", "db_url", "/usr/local/etc/ser/domaintables")
replace with: modparam("domain", "db_url", "dbtext:/usr/local/etc/ser/domaintables")
modparam("domain", "domain_table", "domain") modparam("domain", "domain_col", "domain")
My /usr/local/etc/ser/domaintables path is ok....
I'm not so sure but is this a version problem or am i missing something?.
Thanks in advance.
Ricardo Martinez.-
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
[...]
The ser.cfg snippet for the domain initialization is : #module domain modparam("domain", "db_url", "/usr/local/etc/ser/domaintables")
replace with: modparam("domain", "db_url", "dbtext:/usr/local/etc/ser/domaintables")
the URL must start with "dbtext://". See dbtext README.
Daniel