Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - jonathanv@rokk3rlabs.com

Pages: [1]
1
We use the following method to detect this event:
OnUnhandled

we have been guided according to the following documentation:
http://sourcecodebrowser.com/yate/2.1.0-1~dfsg/class_i_v_r.html#aa82401c24af3ed6ab0ead1c5cd04eaa6

but it not works, please we need your help.. Thanks!

2
Yate IVR / How to make calls from IVR to external phone number (PHP)
« on: March 03, 2015, 04:33:34 PM »
We found the following information related to how make call from IVR to external phone number:

- http://yate.null.ro/archive/?action=show_msg&actionargs%5B%5D=53&actionargs%5B%5D=53
- http://yate.null.ro/archive/?action=show_msg&actionargs%5B%5D=58&actionargs%5B%5D=14

We already made the changes mentioned in the links, but they are not working and they are not showing any logs information.
We create the following function to call.
Code: [Select]
function MakeCall($route) {
        global $saved_ev;
        $called = $saved_ev->GetValue("sip_from");
        $partycallid = $saved_ev->GetValue("id");

        $m = new Yate("chan.masquerade");
        $m->params = $saved_ev->params;
        $m->params["message"] = "call.execute";
        $m->params["callto"] = "5717455171";
        $m->params["id"] = $partycallid;

        $m->Dispatch();
}

Can you help us with any ideas to resolve this, thanks in advance

Pages: [1]