Daniel,
understood. Thank you.
Regards,
Takeshi
On Thu, Jul 16, 2015 at 6:30 PM, Daniel-Constantin Mierla wrote:
> Hello,
>
> the location_attrs table store extra attributes per contact record, which
> can be set in config file via XAVP.
>
> You need to add the tables with _attrs suffix corres
Hello,
the location_attrs table store extra attributes per contact record,
which can be set in config file via XAVP.
You need to add the tables with _attrs suffix corresponding to the name
you use instead of 'location', using same structure as location_attrs.
In your case should be k1_location_at
Hello,
I need to prepare two kamailio instances accessing the same mysql db.
They will write to different location tables so i use function calls like
these:
Server1:
save("k1_location");
lookup("k1_location");
Server2:
save("k2_location");
lookup("k2_location");
This is working fine.
H