Search results

  1. P

    SUB domain

    If you switch to FS PBX, a nice modern dashboard for Freeswitch built on top of FusionPBX, you will have this functionality out of the box.
  2. P

    Call has been on hold and total hold time

    Wow I was looking for the same answer for months. I really thought this was a freeswitch bug. My variables were empty.
  3. P

    SUB domain

    I've implemented that in FS PBX using multi-site admin. It took some modifications to the original FusionPBX to make it all work. Now, certain users can be assigned permissions to switch between allowed domains.
  4. P

    Event_guard

    Mine is a bit older, but this is an example of brilliance and power that must be used carefully. If there was a bug at some point, there are no guarantees that another bug won't make an appearance at some point. This one caused me and my clients a very big headache one morning.
  5. P

    Redundancy

    Typically, redundancy is achieved via database replication and some file replication. Then, you point your main DNS record to the primary server and set up some way of failing over to the other server in case the first one doesn't respond. After that, you need to decide if you are failing over...
  6. P

    Running php or bash script in dialplan + push notification

    @mdriaz Glad it's working out for you. I'm playing with some FS events right now and wonder why they are not used more. When executed correctly, they are magical when it comes to achieving some goals. I can't wait to see your app.
  7. P

    Event_guard

    That brilliance and power come with a lot of bugs. I ran the update script the other day, and it restored all disabled ring group destinations. I spent half of my morning hearing complaints from the clients until we manually disabled them all again. Be careful to just run it that script at will.
  8. P

    Call Park Ringback Destination

    Maybe try overriding the caller ID before parking the call? Then, in theory, it should go back to that destination instead.
  9. P

    Running php or bash script in dialplan + push notification

    @mdriaz As we discussed at the beginning of this thread, the only way to truly catch every scenario is to catch a FreeSWITCH event. Everything else has its own dial string, and it won't work. You should look into that route.
  10. P

    Call Center queue does not work on first creation

    Queues need to be reloaded via the CLI command. Saving info in DB is not enough. When you hit save on the portal, it does it in the background.
  11. P

    Running php or bash script in dialplan + push notification

    To be honest, I don't know if there is an answer to this. Maybe someone else knows something about it. It's possible that there is no solution and that's why all push servers exist separately. However, fail_on_single_reject=false could do the trick if you manage to wake and reregister...
  12. P

    How to forward a specific external caller to a ring group?

    The best and easiest way is to create ring group 123 with the same destinations that ring group 1 has. Another option Is to create ext 123 and enable call forwarding on it to ring group 123
  13. P

    FS PBX ssl instruction

    @ou812, thank you for the excellent suggestion. I plan to develop one, though it will not be available until approximately 2–3 weeks from now. In the meantime, if you would like a brief demonstration via Zoom to address any questions you might have, please feel free to send me a private message.
  14. P

    Running php or bash script in dialplan + push notification

    Sounds like you are building an app. I've never done it, but from the perspective of using apps, I know that the push server is always registered even when the app is closed, and as far as FreeSwitch is concerned, it thinks the extension is online. Your push server then needs to wake up the app...
  15. P

    FS PBX ssl instruction

    I think you misunderstood me. FS PBX ensures complete separation of domains and tenants without relying on poorly formatted usernames. Additionally, we offer a multi-site admin user group for resellers that allows administrators to select which domains are visible to resellers and switch between...
  16. P

    FS PBX ssl instruction

    In FS PBX, the domain is not required for variable configuration since everything is initialized based on the user's actual email and the corresponding domain. This design simplifies maintenance for both users and administrators, and it makes it easier for users to reset their passwords and...
  17. P

    Running php or bash script in dialplan + push notification

    @mdriaz This is correct. When it rings through the ring group or another similar dialplan, it will not execute the local_extension dialplan. I think you need to look into Freeswitch events. You will probably be able to catch an event where a particular extension rings and then execute your script.
  18. P

    FS PBX ssl instruction

    @ou812 What is your use case for multiple domains? All large VoIP providers have one single URL for users to use.
  19. P

    How to forward a specific external caller to a ring group?

    Could you please clarify how an external caller dials extension 123? For instance, is this accomplished through an IVR or another mechanism? Typically, external callers cannot directly dial internal extensions without additional steps, so this context will help us provide a more accurate answer...
  20. P

    Enabling TLS Support for FS PBX

    Hello everyone, I have prepared a comprehensive tutorial on enabling TLS support for FS PBX and FreeSWITCH. If you notice any missing elements from the required steps, please feel free to let me know...