Search results

  1. M

    FusionPBX SMS Integration with Bandwidth

    Hi @Jonathan Black, My mistake, I have commented out the error_log and now I can see the URL in the error.log, but I get an empty email I guess I have to play around with sms_email.php to get it downloaded and forwarded to an email.
  2. M

    FusionPBX SMS Integration with Bandwidth

    Hi @Jonathan Black , error_log('[SMS] REQUEST-MEDIA: ' . print_r($data[0]->message->media, true)); but still getting the url truncated in the error.log
  3. M

    FusionPBX SMS Integration with Bandwidth

    Hi, @Jonathan Black I am working on the MMS thing with Bandwidth and when I send MMS then I was able to get partial URL from Bandwidth on Access.log. And I get an SMS like MMS message received, see email for attachment. The Email I receive is blank. below is the sms_hook_Bandwith.php I have in...
  4. M

    Mobile-Twinning app

    Hi, its working now. I had some permissions issue. Thanks for quick reply.
  5. M

    Mobile-Twinning app

    HI, I have installed the Mobile-twinning and did the setup correctly. but when I dial *662 to I am getting Normal clearing. Any ideas how to fix it?
  6. M

    FusionPBX SMS Integration with Bandwidth

    @Jonathan Black I am wondering is their a way we can do SMS from the FusionPBX GUI instead of endpoints. I have seen an option called Messages is this related to SMS. I have tried some testing's but it's not working
  7. M

    FusionPBX SMS Integration with Bandwidth

    @Jonathan Black Thanks for the info. Right know I am not trying to implement the Broadcast. I saw the option so got curious how it will work.
  8. M

    FusionPBX SMS Integration with Bandwidth

    @Jonathan Black Can you please shed some light on SMS Broadcast. I have a Tab and I have added a test Broadcast, but I don't see any option to start the broadcast.
  9. M

    FusionPBX SMS Integration with Bandwidth

    Yes turn off all three.
  10. M

    FusionPBX SMS Integration with Bandwidth

    @Robert Birch are you still getting duplicate messages from Bandwidth? If yes you can get rid off them by turning off Call Back events at Applications tab on bandwidth portal. Because every call back that Bandwidth send is expect us to send them HTTP 200. Also I have changed the Hook file...
  11. M

    FusionPBX SMS Integration with Bandwidth

    You might have to open a ticket with Bandwidth so they can share their log with you.
  12. M

    FusionPBX SMS Integration with Bandwidth

    under SMS tab at MDR's are you seeing any records? Did you check fs_cli to while you are sending incoming message?
  13. M

    FusionPBX SMS Integration with Bandwidth

    can you share the error.log so I can review?
  14. M

    FusionPBX SMS Integration with Bandwidth

    Robert, Make sure the DID# in the SMS Destination Matches the DID# in the voicemail settings SMS To field. I use the format as 1XXXXXXXXXX.
  15. M

    FusionPBX SMS Integration with Bandwidth

    Robert, As @Jonathan Black said it's depends on your error.log. It might be an ACL issue as the Bandwidth send inbound messages from various IP Addresses. below are the list of IP addresses I got from Bandwidth. If its a ACL issue then once you add the below in your ACL then you should start...
  16. M

    FusionPBX SMS Integration with Bandwidth

    Robert, The outbound message uses the path ./usr/share/freeswitch/scripts/app/sms/index.lua for sending outbound. in the Index file you have to add the application filed at carrier Bandwidth section cmd="curl -v -X POST " .. api_url .." -u " .. access_key .. ":" .. secret_key .. " -H...
  17. M

    FusionPBX SMS Integration with Bandwidth

    Hi Robert, We required to add a filed called "application id" to your index.lua file? where is your index.lua file located? can you post the error.log
  18. M

    FusionPBX SMS Integration with Bandwidth

    Maybe we have to work on the V2 and convert the code according to it. I found some info from Bandwidth about V1 vs V2 this might shed some light on the changes that we have to make...
  19. M

    FusionPBX SMS Integration with Bandwidth

    Hi, I have worked on the index.lua and added the applicationId filed to it. I am able to send out messages and inbound message mostly I am getting repeatedly and when I query bandwidth they are seeing HTTP 502 from the server side. Do you have the working sms_hook_bandwidth.php so that I can...