Search results

  1. whut

    Polycom VVX Series Provisioning

    I have not touched Poly in a long time given their "brilliant" decision not to update certificates. I am sure anyone still supporting the brand can provide more up to date information on that issue. They do keys differently than any other brands. This is Poly/Polycom firmware configuration and...
  2. whut

    The encoded file /var/www/fusionpbx/app/dialplan_tools/app_languages.php has expired

    These steps mention more steps https://github.com/fusionpbx/fusionpbx-app-device_logs
  3. whut

    The encoded file /var/www/fusionpbx/app/dialplan_tools/app_languages.php has expired

    Delete the directory and then reinstall the free version
  4. whut

    How to schedule Call Broadcast

    I think you will want to research sched_api and sched_broadcast. Also dissect the call broadcast code and the school bells code. In the past I had used school bells to call am extension or a ring group. When an extension answers they would hear a recorded message. What exactly are you wanting...
  5. whut

    SOLVED Fanvil provisioning problems

    Factory reset the device to ensure there are no residual settings. Assuming you have populated the auto provisioning page correctly, press the provision button. Then on the settings page (I think - don't remember without looking) press the reboot button. Fanvil needs a reboot to take the auto...
  6. whut

    "providers" ACL

    I do not know the logic behind requiring 1 ACL to be specifically named. I would not rename the 2 ACLs that come with fusion by default. It does not matter what you name any additional ACLs that you create.
  7. whut

    "providers" ACL

    Providers is the default ACL that you have by installing fusion. It is intended for you to add your trunk provider CIDR. You may also create any additional ACLs for whatever you like: customers, replication servers, softphone applications, and so forth. I do not know why providers ACL spelling...
  8. whut

    How to schedule Call Broadcast

    @Mikeme school bells week work nicely for a scheduled broadcast daily at 8:00
  9. whut

    SOLVED xml_cdr not working after update

    I see in https://github.com/fusionpbx/fusionpbx-install.sh/blob/master/debian/resources/switch/package-master.sh that freeswitch-mod-xml-cdr is being installed. modules.conf is missing `<load module="mod_xml_cdr"/>` (and `<load module="mod_tone_stream"/>`). Still no if I re make mod_xml_cdr and...
  10. whut

    SOLVED xml_cdr not working after update

    It looks like new installations do not have the xml_cdr module installed.
  11. whut

    WebPhone for FusionPBX.

    Hello @Amit Iyer, This looks like an interesting application that I will look into further. Thank you for posting it. I say that I see a few points in the code and in the installation instructions that you are installing it in core, which I disagree with. As this is not operational to fusion's...
  12. whut

    is it right to clear RAM cache daily?

    As I understand it this will free up memory which would be good. But a caution of lower performance until the cache is rebuilt over time with frequently used data.
  13. whut

    Call Recordings delete after 2 days

    It look like only pieces of your maintenance script are uploaded and they do not include the call recordings code within. Example.pdf states purge_call_recordings=false which is disabled and days_keep_call_recordings=180 if it was enabled. I would expect something similar to if [...
  14. whut

    Dial By Name Directory

    did you reload xml?
  15. whut

    Dial By Name Directory

    Edit /etc/freeswitch/autoload_configs/directory.conf.xml and test thoroughly. This is affects all domains, any 3 character names cannot be expected to work, and that may be too many digits to enter for ease of use. So you may want to consider developing a domain level solution.
  16. whut

    After upgrade, email_queue.php gives "Email Queue is disabled in Default Settings"

    No, that will not matter. Obviously something else. Run every update option - 1 at a time, 1 after another and try again.
  17. whut

    After upgrade, email_queue.php gives "Email Queue is disabled in Default Settings"

    Try changing the default settings value 'True' to 'true' - all lowercase, save, reload button at the top-right of the default settings page and try your command again.
  18. whut

    Call Limit message

    Try playback like thisbellow, ensuring your file path and file are correct: <action application="playback" data="file_string:///var/lib/freeswitch/recordings/test.synphony.co.uk/recording.wav"/> If the dialplan still does not work then temporarily edit your testing domain's *9664 dialplan by...
  19. whut

    softphone remote register issue

    in the gs wave extension account settings try changing Transmission Protocol to TCP and Register Expiration (minutes) to 3. Wait up to 3 minutes. If the extension/account is still unregistered try the other Transmission Protocol option of TLS (doubt you will be using TLS).
  20. whut

    emailing from script

    As of this moment I have a shell script that is executing a modified copies of email.lua and send.email.lua scripts with hardcoded domain uuid and domain name in the lua scripts. It did not work to send them as parameters. freeswitch errors that the domain uuid is an undefined parameter. I may...