[SR-Users] time format in db_flatstore

2010-08-05 Thread SIP Projects
Using version 1.5.2. Trying to migrate acc from db_mysql to db_flatstore to reduce io wait during heavy dialing. However, the default time format changes from normal -MM-DD hh:mm:ss to unixtime in flatstore. I tried using $TF but its format is even more non-standard. Is there a way to

[SR-Users] time formats (specifically in db_flatstore)

2010-08-05 Thread SIP Projects
Using version 1.5.2. Trying to migrate acc from db_mysql to db_flatstore to reduce io wait during heavy dialing. However, the default time format changes from normal -MM-DD hh:mm:ss to unixtime (I think) in flatstore. I tried using $TF but its format is even more non-standard. Is there

Re: [SR-Users] time formats (specifically in db_flatstore)

2010-08-05 Thread SIP Projects
quot; " + $time(hour) + ":" + $time(min) + ":" + $time(sec); Error from kamailio: ERROR:core:eval_elem: invalid numeric operands Any suggestions? Thanks, Matt ps. Sorry for the multiple posts - it seems the list mailer may be stalled a bit. On 8/5/2010 1:24 PM, SIP

Re: [SR-Users] time formats (specifically in db_flatstore)

2010-08-05 Thread SIP Projects
doh! here is the actual variable i'm trying to hack together: $var(reg_time) = $time(year) + "-" + $time(mon) + "-" + $time(mday) + " " + $time(hour) + ":" + $time(min) + ":" + $time(sec); On 8/5/2010 3:29 PM, SIP Project

Re: [SR-Users] time formats (specifically in db_flatstore)

2010-08-09 Thread SIP Projects
On 8/9/2010 2:33 PM, Daniel-Constantin Mierla wrote: Hello, On 8/9/10 6:13 PM, Henning Westerholt wrote: On Thursday 05 August 2010, SIP Projects wrote: doh! here is the actual variable i'm trying to hack together: $var(reg_time) = $time(year) + "-" + $time(mon) + &