Search results

  1. A

    VM Cleanup

    Ok, just from top of my head, in v_voicemail_messages table create a new column called save or whatever you want, keep the default value as 0 and change this to 1 when the client / softclient presses the option to save. I believe you can achieve this by modifying the index.lua located in...
  2. A

    Help Me 404

    Your carrier openvoip is failng the call, they are rejecting it with 404, Check with the carrier.
  3. A

    Not able to play recordings in Call details records section

    Check the permissions of the recordings directory once.
  4. A

    VM Cleanup

    You can just move the VM's Audio to another directory as soon as the client ask's you to save that and then just create a simple webpage for them to access it via new directory.
  5. A

    WebPhone for FusionPBX.

    Edit index.php Line 13 replace the permission fields with dashboard
  6. A

    WebPhone for FusionPBX.

    You can do that, if you have a knowledge of PHP, you can have the Phone be opened in a new tab when clicked and hide the menu / header / footer.
  7. A

    WebPhone for FusionPBX.

    I don't know much about the GSWave app, I have never used it. You can create a new post and someone will help you
  8. A

    WebPhone for FusionPBX.

    Great, Happy to help :)
  9. A

    WebPhone for FusionPBX.

    it seems you are missing the file /var/www/fusionpbx/project_root.php just run touch /var/www/fusionpbx/project_root.php and you are good to go.
  10. A

    WebPhone for FusionPBX.

    Check freeswitch CLI for errors you will get the problem there.
  11. A

    WebPhone for FusionPBX.

    Bro, you just have to add mod_verto in modules. <load module="mod_verto"/> and restart freeswitch. Make sure you add the codecs in vars.
  12. A

    WebPhone for FusionPBX.

    Kindly refer to the below links, it would be better if you read the freeswitch cookbook. https://developer.signalwire.com/freeswitch/FreeSWITCH-Explained/Modules/mod_verto_3964934 https://www.packtpub.com/product/freeswitch-18/9781785889134
  13. A

    WebPhone for FusionPBX.

    Advance -> Variables edit global_codec_prefs add H261,H263,H264 edit internal profile and make sure inbound-codec-prefs should be $${global_codec_prefs} edit /etc/freeswitch/autoload_configs/modules.conf.xml and add mod_verto on it and restart freeswitch and try making video calls.
  14. A

    WebPhone for FusionPBX.

    Hi. You need to enable the video codecs in your Sofia profile and vars. Also you need to add screen share parameter in the Sofia profile I believe you are using internal profile. Add it in that and check mod_verto should be enabled.
  15. A

    WebPhone for FusionPBX.

    Hi @whut , You are right, i did not think of this. you can just copy the folder in /var/www/fusionpbx/app and then change the menu link to the new directory. Everything should work fine.
  16. A

    WebPhone for FusionPBX.

    I have made a customer WebRTC phone using Browser-Phone for FusionPBX where you just need to assign a user to the extension and click on the webphone which will be available on fusionpbx menu. You won't need to register/enter any information about the extension, the system will fetch everything...
  17. A

    where does fusionpbx store gateway settings

    Hi, FusionPBX stores the data in the postgres database, Table :v_gateways To Dump it and automate it you will need to create an API on the basis of domain_uuid and other fields.
  18. A

    SOLVED Push Notification.

    Welcome :)
  19. A

    SOLVED Push Notification.

    do you have a file called conn.php ? the file conn.php contains the database connection, also if you don't have conn.php file you can just add the db config on push_notification.php file and then use that connection for the process.
  20. A

    SOLVED Push Notification.

    Hi Vishal, Yes I have added a 2 new columns in v_extensions one for token and one for the platform. the token will be your app's Device token platform will be your Device type ios or android.