Hi, On Nov 17, 2011, at 9:45 AM, Nick wrote:
> Hi > > I updated through svn. And then compile again and Start opensips server > But I still get the same error. > > /usr/local/sbin/opensips[11732]: INFO:presence:handle_subscribe: Missing or > unsupported event header field value > Nov 17 16:42:05 sfs-staging /usr/local/sbin/opensips[11732]: > INFO:presence:handle_subscribe: event= message-summary > Nov 17 16:42:07 sfs-staging call-control[31147]: User > sip:[email protected] can make unlimited concurrent calls > Nov 17 16:42:07 sfs-staging /usr/local/sbin/opensips[11733]: > INFO:core:buf_init: initializing... > ov 17 16:42:07 sfs-staging /usr/local/sbin/opensips[11733]: callcontrol > returned code is 1 > Nov 17 16:42:07 sfs-staging /usr/local/sbin/opensips[11733]: Call control: > internal server error > Nov 17 16:42:07 sfs-staging call-control[31147]: Call id > MjUyMTQ2OGE5OGMyYzZmNzE3MzlmZWI1ZWFjNTg2YTA. of [email protected] to > sip:[email protected] canceled by user > > I don't know why. Can you give me suggest?? On your config you are doing an xlog *after* calling call_control, which means $retcode will be overwritten with whatever xlog returns. Remove that line, or save the retcode: call_control(); $var(cc_retcode) = $retcode; xlog(...); switch($var(cc_retcode) ... Regards, -- Saúl Ibarra Corretgé AG Projects _______________________________________________ Users mailing list [email protected] http://lists.opensips.org/cgi-bin/mailman/listinfo/users
