Search results

  1. J

    changing time condition time from 12 to 24

    Not sure. Sorry. It is actually saving the selection. Not sure why the display isn't working. You'll probably need to do some troubleshooting.
  2. J

    changing time condition time from 12 to 24

    Well, I looked at the code for the time conditions page and the bad news is that it's hard-coded this way. The good news is that it shouldn't be all THAT difficult for you to change, if you want to give it a try. It's in app/time_conditions/ and the file is time_condition_edit.php. Make a...
  3. J

    changing time condition time from 12 to 24

    I'm assuming you mean the "Time of Day" condition. I don't see any options to change the way it displays. But note that, when it stores the info in the dialplan, it is stored as "minute-of-day" with the minute number as the data. However, the "Date & Time" condition does seem to display as...
  4. J

    SOLVED Do I need multiple SIP profiles on the phone to know where the inbound call is coming from?

    You can even throw in distinctive ring, for calls from different sources, but usually the visual indicator is enough.
  5. J

    SOLVED Do I need multiple SIP profiles on the phone to know where the inbound call is coming from?

    Regarding the multiple line keys: We've never had a use-case for more than three or four SIP accounts on a single phone--and even that was unusual. Our use case for that many keys is for BLFs and speed dials. However, we regularly have situations where a customer wants several line appearances...
  6. J

    SOLVED Do I need multiple SIP profiles on the phone to know where the inbound call is coming from?

    Unless you just want three line appearances, no I would only create a single extension and add it to your phone. Then, as you say, direct your main number and DID to it. As you say, internal calls will be identifiable by the three digit caller ID. To further distinguish calls coming from your...
  7. J

    SOLVED ALGO 8186 Speaker with Fusionpbx

    We took over one of these at a new customer and switched it to our server. But it’s had problems with needing to be restarted several times because it just stops working. We’re about to replace it with a Fanvil equivalent.
  8. J

    Fanvil Zero Touch Auto Provisioning

    Thanks, I’ve been around, but mostly DM with people asking questions. If memory serves, my business partner signed up for it with them. I don’t recall it being an arduous process. We primarily sell Grandstream phones and like their GDMS management service. As we understand, Fanvil has a...
  9. J

    Fanvil Zero Touch Auto Provisioning

    We tested with a couple of phones and it did work—at least enough to point the phones over to our provisioning server. However, since we don’t sell these phones, I don’t have experience with any kind of volume on it.
  10. J

    Working SMS Integration

    SMS to HTTP is likely what you want. The URL it is asking for there is likely equivalent to the "webhook URL" that is used by other carriers. But I would start with outbound. In most cases, it is easier, because you can test it using cURL without doing any reprogramming. To make inbound work...
  11. J

    Working SMS Integration

    Sorry, we don't use that company. It's a lot to read, but earlier in this thread, I did give some pointers on what to do to add more carriers. That should still be valid information.
  12. J

    Click to call

    Thanks! This is still working with pretty current version of FusionPBX. I did tweak the icon name to say "Click to Call" but otherwise, "it just works"!
  13. J

    Phones Not Ringing

    It doesn't queue, but there are options to set the ringback tone/music, play an intro greeting, and extend the ring cycle quite a bit. You can even direct to another ring group after it times out, if you like. We have a couple of small call center customers (4-6 phones) where we just use ring...
  14. J

    Phones Not Ringing

    So when a call comes in, the network receives 4 invites plus 12 BLF signals (3 BLF X 4 phones) at once, and then the invites generate an ACK, not sure about the BLFs. I would certainly consider it as a possible problem. Another symptom that we've seen is that sometimes the call is answered on...
  15. J

    Provisioning Grandstream Devices

    There are two places to push provisioning changes from within FusionPBX without reboots: Devices and Registrations. On Device page, there's a provision button at the top. On Registrations, just tick the one(s) you want to re-provision and click Provision at the top. Device page provision...
  16. J

    Phones Not Ringing

    Have you tried just sending the calls to a ring-all ring group, not call center and make sure they ring through? We do not use call center, so I can't help much there, but we have had issues at sites where their network infrastructure was poor, with too many simultaneous phones ringing (even...
  17. J

    Provisioning Grandstream Devices

    I'll second the comments of @ad5ou. We are using GDMS to redirect to FusionPBX provisioning in exactly that way. To me, doing the full-on provisioning in GDMS would create too much extra work to copy account info across from FusionPBX, so I don't recommend it. Of course, you do need to have...
  18. J

    What's the current state of sms?

    Another use-case we've found is for customers like insurance agents where their clients need to send in pictures from a phone. They can easily send them by MMS to my customer's main number and then the customer receives it in their email. Also, with the version that is on Github, set...
  19. J

    Working SMS Integration

    Here is the entire Telnyx block from the sms_email.php file. This one is currently working: if ($carrier == "telnyx") { if (gettype($media)=="array" && count($media)>0) { $email_txt = 'To: ' . $to . '<br>Msg: ' . $body . '<br>MMS Message received, see...
  20. J

    SMS - app.lua:48 attempt to call a nil value

    I suspect you mean in /usr/share/freeswitch/scripts/app/sms/index.lua. And thanks for the info on v2 compatibility. I originally wrote the Telnyx add-on under v1, and never bothered to go back and update to v2. FYI, on the inbound side, I believe someone mentioned that there may also be...