Search results

  1. Samael28

    Periodic signals (School Bells) app

    I was designing it for Fusion 4.4, never upgraded it to 4.5. But it should be rather easy.
  2. Samael28

    Periodic signals (School Bells) app

    I'm a bit off from Fusion/Freeswitch world now, but app is opensource. You can modify and fix it by yourself
  3. Samael28

    Periodic signals (School Bells) app

    And yes. This app is tested to work only with PostgreSQL, not MySQL.
  4. Samael28

    Periodic signals (School Bells) app

    Hi! When do you get this error?
  5. Samael28

    FusionPBX - VTiger 7 Integration

    Yea, this is a huge problem to make it as Fusion module, mostly cause plain Fusion code is not supporting any custom CDR callbacks or so. For running docker alongside, you need to run daemon, which is listening to FreeSwitch events. And it's actually a question of technology to use. So, long...
  6. Samael28

    FusionPBX - VTiger 7 Integration

    Every telecom engineer should build a PBX, CallCenter, and CRM Integration. So, my time for CRM integration came. The idea is quite simple. Calls are registering in CRM with call recording Calls are being notified with popup while using CRM Calls from CRM directly. Click 2 Call actually...
  7. Samael28

    Phonebook (Only supports Yealink currently)

    If you are using master branch, there could be a bug there.
  8. Samael28

    Phonebook (Only supports Yealink currently)

    Hi! To get API visible in User section you need to have this empty file /var/www/html/fusionpbx/app/api/app_config.php
  9. Samael28

    FusionPBX App Development

    There is no guide or so, so I assume you will have to follow the usual path - take some simple app (I was starting from Call Flow) and adopt it to your needs.
  10. Samael28

    Periodic signals (School Bells) app

    A small app designed actually for schools. When you have PBX connected to your announcement system, it would be logical if PBX can handle periodic signals as well. So, the name of the app is also obvious in this case - School Bells Now it's a part of my FusionPBX fork and fusionpbx-apps repo as...
  11. Samael28

    Simple Call ACL App for FusionPBX

    Hi! Actually yes, code is open source :) For now, I don't require these functions, but change is really simple. PR's are welcome.
  12. Samael28

    SOLVED Agent status & BLF

    Small add to @KonradSC awesome patch. For some reason 'Log Out' via BLF is not working fast and not lit down lamp instantly on Freeswitch 1.8.7. Small trick worked for me - generate event with same UUID as call UUID Something like this if string.find(agent_name, 'agent+', nil, true) ~= 1 then...
  13. Samael28

    Simple Call ACL App for FusionPBX

    Made a simple Call Access Control List application for FusionPBX Idea is to have a set of rules, that will be match on Caller and Callee number to allow or reject this call. As an example - simple limit certain extension to call only certain numbers. Or block some callers to call exact this...
  14. Samael28

    Upgrade Issues or Bugs

    if (is_uuid($uuid)) { $sql = "update v_xml_cdr set "; $sql .= "record_path = '".$record_path."', "; $sql .= "record_name = '".$record_name."' "; $sql .= "where uuid = '".$uuid."';\n"; if ($execute_sql) { $db->exec($sql)...
  15. Samael28

    Upgrade Issues or Bugs

    Check upgrade script, there might be bug with not updated database field name. In v_xml_cdr there no column uuid, now is xml_cdr_uuid
  16. Samael28

    Phonebook (Only supports Yealink currently)

    Check permissions on the user as well. And pls provide the logs of nginx in case of error
  17. Samael28

    Phonebook (Only supports Yealink currently)

    You need to replace <api_key> with user with phonebook_access permission
  18. Samael28

    Phonebook (Only supports Yealink currently)

    Can you just curl this http(s) string?
  19. Samael28

    Import Extensions/Devices from CSV file

    Did you run Permission Defaults from Upgrade menu?
  20. Samael28

    Phonebook (Only supports Yealink currently)

    To be honest, I don't much care on it, but if it matters to someone - will do!