Jump to content

Douillez

Members
  • Posts

    24
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Douillez

  1. Hello,

     

    I can t register a 2N IP Verso on SmartPbx.

    I add on smartpbx a "user" Extension 223, the  device as Phoneip and add the mac address of the 2N. I have the login and the password generated.

    In interface of the 2N i have fill all the parameters i think but the register failed :-(

    There is a "test call" in the interface and this one is ok. It makes the call. for example i enter 201 and the 2n (223) ring to 201. On 201 i see the name of 223 i define in the user interface of our smartPbx... But if i call 223 from 201. No route...

    with the 2n i have add a keypad, if I composé 201 with this, no call too.

     

    The parameter introduce in 2N seems ok becausd if I change a letter of login, or parameter of realm, or of proxy. The test call is not ok.

    Don t understand why it don t registrated :-(

     

    i try to add the 2n as Ata Device but no success too :-(

     

    Best regard

  2. Hello I find it :-) BUT OK with T53W and NOT with T58A :-(

    First 1 create access of XML Browser in the Phone pointing to Xml File

    image.png.e0c4e26f5a06905ce4ddc208fa9eba9b.png

     

     

     

    The code of The XML File in the Value: XmlCompanyMenu.xlm

    <?xml version="1.0" encoding="ISO-8859-1"?>
    <YealinkDECTTextMenu
    defaultIndex="1"
    style="numbered"
    Beep="yes"
    Timeout="5"
    destroyOnExit="yes"
    >
    <Title>Select Company CallOut</Title>
    <MenuItem>
    <Prompt>Company xx</Prompt>
    <URI>http://xxx/Company1xx.xml</URI>
    </MenuItem>
    <MenuItem>
    <Prompt>Company yy</Prompt>
    <URI>http://xxx/Company2yy.xml</URI>
    </MenuItem>
    </YealinkDECTTextMenu>

    The first Company1xx.xml

    <?xml version="1.0" encoding="ISO-8859-1"?>
    <YealinkIPPhoneExecute Beep="no">
    <ExecuteItem URI="Dial: *2 " />
    <!-- The two line after serve to add pause between the system hear the first dtmf. These ones add no effect really-->
    <ExecuteItem URI="Key: STAR " />
    <ExecuteItem URI="Key: STAR " />
    <!-- From this one, the system capture the number-->
    <ExecuteItem URI="Key: KEY_1 " />
    </YealinkIPPhoneExecute>

    Like This, *2 is compose and go to my callflow *2 where there is a "Collect DTMF". If i don't put the 2X STAR in the code, then the catch of dtmf is not done correctly. With this trick the Key 1 is catch and i can complete with the number i want compose.

    It's OK with T53W But with T58A, it doesn't capture my dtmf :-( I try with Multiple STAR etc. Never it catch the DTMF :-(

    I test:

    <ExecuteItem URI="Dial:*2" interrupetCall="no"/>

    <ExecuteItem URI="Key:keypad1"/>

    <ExecuteItem URI="SendDigits: 1 "/>

    Nothing take effect :-(

    If i make a DSSKEY like this:

    image.png.78d214a75fdbca9d5767c6d7be105f13.png

     

    It's ok, the "1" is catch :-( But i don't want to use a line Key for each choice :-( I Prefer the Menu :-)

     

    I have no idea to modify in my xml file :-(

     

    for information, here is my parameter in my callflow for collect DTMF

    image.png.50f83e2fff73a46178d6a1d47f2f57f4.png

     

    An other thing i modify the default Codec in the Phone.

    I delete these

    image.png.821a969a2447fca2fe34b7c37c04e9d1.png

     

    And put G722 in First place. Like this, if i compose manually *2(send) then 1 (For choose the first number selection wich will have effect in my pivot) then the number i want call. The call is ok!

    image.png.900ebd154e546207f6a793287b2f00e0.png

     

     

     

    All Help are Welcom :-(

     

  3. Hello, 

    I try to understand Xml Browser in DSSKEY in T53W.

    Actually i have this in DDSKEY:

    image.png.c5652bd0b691367ecd44938d71248249.png

    When i press the touch, it compose "*2" then add number "2" as dtmf. 

     

    But i try to implement this to Xml Browser. Like this, i could create a menu with multiple choice. Because i want to have the possibility to use as extension "1" or "2" or "3".... But i can't find the correct command to put extention "2" in the xml.

     

    image.png.c518cb27601a99b705d5745eaf26579c.png

     

    Here is the code i try

    <?xml version="1.0" encoding="ISO-8859-1"?>
    <Directory>
    defaultIndex="1"
    Beep="yes"
    Timeout="50"
    <Title wrap="yes">Select Society</Title>
    <MenuItem>
    <Prompt>Choice 1</Prompt>
    <URI>*2</URI>
    <Selection>1</Selection>
    </MenuItem>
    <MenuItem>
    <Prompt>Choice 2</Prompt>
    <URI>*2</URI>
    <Selection>2</Selection>
    </MenuItem>
    </Directory>

    Hope i'm clear :-(

     

    Best regards

     

  4. Hello

    I try to understand derstand all part of the script. Some questions:

    Only one file php with all the code?

     

    How this part with "http://portal.example.com/pivot/resource-cid-select.php" means i must create reseource-cid-select.php upload on our ftp and the content is with the part wich start "<?php function signalwire($digitspl) { $signalwire = array(....." until the end?

     

    Sorry for my lack of knowless :-(

     

    May be comment on the code?

     

     

    To resume what i try to do:

     

    In the same place, there are users who work for multiple society. They must select the correct number when they place a call.

    In Belgium, the international format of a call number is +32xx...  (32 is the prefix of Belgium). In france the prefix is +33xx.... 

    We will have these numbers for example:

    Society names "A": 3228992021

    Society names"B": 3228992022

    Society names "C": 3228992023

    Society names "D": 33187651122

     

    When a user(Caller) want to make a call, he can choose the number of the society wich will show on the phone of called.

    The number of called could be like this form depend on the destiantion fixe or mobile:

    32xxxxxxxx

    32xxxxxxxxx

    33xxxxxxxxx

    Don't know if i'm clear :-(

     

  5. Hello thanks for your reply :-)

     

    I have see this page but i'm a very NEWBIE :-(

     

    I don't understand how exactly put all this code in a PHP file :-(

     

    I understand what to put in the pivot to linking to the php file i want.

     

    What i search is the caller choose the outcall number of the society.

     

    Exemple: Society A = Number 3221231212

    Society B = Number 3229879898

    I create callflow with pivot for example with number "2003"

     

    How to make the correct php file with code Json Inside to choose the society to make the calloutput.... Sorry for my poor english.

    I see exemple of make *2(Futurecode i don't have in my smartPBX :-(  ) Then choose for exemple 01 (For Society A) then the number of the person i want to join. (Here in Belgium it's like 32(Code of Country) 2(Prefix of Bruxelles) xxx xx xx.

    I want this if i want Society A.

     

    *201322xxxxxxx

     

    Thanks for your help :-)

  6. Hello,

     

    i try to use the Dynamic CID on Callflow. I don't have access in the APP Exchange. Only see this one in Callflow. But when i create a call flow, it only ask me to enter the identity of caller follow by #. But all i enter is good.

     

    How to adapt the code beloww in a PIVOT for example to a PHP file.?

     

    Tks The goal is to select one af my 8 numbers in my account to make a call out.

  7. Hello,

     

    i rent a SmartPBX (2600hz) to a firm "X". I have access on SmartPBX and Callflow in the APP of KAzoo. When i Press "?" i can see this. I blur all sensitive info.

    image.png.b1aa54c9da1bb3437a6426f0b71f6015.png

     

    I create myself the callflow, etc. BUT i have two problem:

    1. I can't use the feature Privacy *67 to make a Privacy Outcall. To make a privacy call, i must go on account or user to choose "Hide Name". If i choose "Hide Number + Name", i have the same issue: No call out; bip bip bip bip... My reseller don't find why...

    image.png.9c28ff3b11021e6f601191e8593183fa.png

    2.I see somewhere there is an APP call "Dynamic Cid". But i can't see it in my App Exchange as SmartPBX, Callflow, voicemail,etc. Iask to add this one to my reseller but he tell me it don't know about this APP... Is there a paid module? Is it only a feature to add by my reseller? I don't see feature code "*2" in relation to use "Dynamic CID".

    We have +- 10Number for our company, and some user work for multiple company. Then when they want make a call, they want to choose the number of a precise company. I see it's possible with "Dynamic Cid". For exemple *2(to prevent system to choose the number of a list)01(for exemaple if 01 is define for society "A") Number of call...

    Could you help me, explain why i can't and also for my reseller he don't see this? and How it could show this? Pay not Pay? Activate an option in the server... Well all tricks is good :-).

     

    I also see in CallFlow the "Dynamic Cid" but i don't know how to use it. I create a callflow with this but when i use it telll me "Please enter the identity of the caller follow by #". If i enter for exemple #1. It tell me "enter invalid". I don't know where to define the different IDentity :-(. By a Pivot which point to a php file? Please, thanks for your help.

    image.png.d9bfb03687bb92f1049afc275eaf1a58.png

     

     

    Best regards

×
×
  • Create New...