Hello dear fellow developers,
I am new to Kamailio and to get started I followed the guide (http://www.kamailio.org/wiki/install/4.3.x/git)...
On the 3rd stage of the guide (3.Tuning Makefiles)
I changed "include_modules= db_mongodb" instead of "include_modules= db_mysql" and sucessfully compiled Kamailio...
I skipped stage 7 and followed this guide instead (http://www.kamailio.org/wiki/tutorials/kamailio-and-mongodb)
But at the stage 10 where I should add new account using command:
kamctl add test testpasswd test(a)mysipserver.com
I received an error:
ERROR: This command requires a database engine - none was loaded
Where was my mistake? What I did wrong?
Thanks in advance
---
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/431
Hello,
a short message to announces that the date and location for next
Kamailio World Conference were decided - May 18-20, 2016, in Berlin,
Germany.
Kamailio project is celebrating 15 years of development in 2016,
therefore we plan to have a special edition.
Website of the event and call for presentations will be launched very
soon. Meanwhile, if you haven't participated at a past edition, you can
check the previous edition website in order to get an idea about the
structure and content of the event:
- http://www.kamailioworld.com/k03/
Have a great week,
Daniel
--
Daniel-Constantin Mierla
http://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda
Book: SIP Routing With Kamailio - http://www.asipto.comhttp://miconda.eu
Hi,
Not sure if this is a proper bug, but when I assign something to $fd, instead of replacement it just add that value to the end:
Let assume current $fd value is "mydomain.com"
if I do following:
$fd = "newdomain.com";
$fd changed to "mydomain.comnewdomain.com", but it should be "newdomain.com"
I believe this is not proper behavior.
Thank you!
---
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/428
Module: kamailio
Branch: master
Commit: 700617c6b3707fba16001f82fab6ca0370b23acf
URL: https://github.com/kamailio/kamailio/commit/700617c6b3707fba16001f82fab6ca0…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2015-12-04T17:31:41+01:00
outbound: adjusted log message for trying to import the api
- when module is not loaded, a messages with 'failed' was printed,
which could trigger an alert even for info level
---
Modified: modules/outbound/api.h
---
Diff: https://github.com/kamailio/kamailio/commit/700617c6b3707fba16001f82fab6ca0…
Patch: https://github.com/kamailio/kamailio/commit/700617c6b3707fba16001f82fab6ca0…
---
diff --git a/modules/outbound/api.h b/modules/outbound/api.h
index b8ed738..bc80589 100644
--- a/modules/outbound/api.h
+++ b/modules/outbound/api.h
@@ -51,7 +51,7 @@ inline static int ob_load_api(ob_api_t *pxb)
bind_ob_f bind_ob_exports;
if (!(bind_ob_exports = (bind_ob_f)find_export("bind_ob", 1, 0)))
{
- LM_INFO("Failed to import bind_ob\n");
+ LM_INFO("unable to import bind_ob - maybe module is not loaded\n");
return -1;
}
return bind_ob_exports(pxb);