Search results

  1. whut

    Installing into an existing postgres db

    /etc/fusionpbx/config.conf replaced /etc/fusionpbx/config.php and /etc/fusionpbx/config.lua ~9ish months ago.
  2. whut

    cpu steal %

    Greetings, I am messing around with some vital stats of servers for an observability GUI and would like some feedback on running this set of commands: top -bn1 | grep '%Cpu' ; top -bn1 | grep '%Cpu' | awk -F 'st' '{print $1}' | awk '{print $NF}' What I am looking for is for the 'st' item in...
  3. whut

    Hot Desk Remote Login

    hot desking uses the provision dialplan which includes reboot=true. The simple test would be to disable these 2 reboot=true. But then the lua script for provisioning has if (not reboot) then reboot = 'true'; end so I am guessing the phones will reboot anyway because you are initiating a...
  4. whut

    Hot Desk Remote Login

    @wouam31 those are reasonable suggestions. But not quite what will work. auto_insert_enabled = true allows any device that tries to provision to the server. It can be useful if you have some issues provisioning and want a temporary open door policy. How hot desking works is a user enters their...
  5. whut

    Hot Desk Remote Login

    That is an interesting issue and question. I have not yet thought of this, but it seems like it would be a useful functionality. Perhaps you could send keys by command line or script. But I think I would start by looking at the device.php code for the Alternate column that appears when at least...
  6. whut

    T53 Hold Music not playing

    That is good progess in identifying where and where not the problem is. Make sure to follow @mcs3ss2's suggesting. Many problems are easily fixed by running ALL upgrade options on the Advanced -> Upgrade page. Run #1 and watch for any errors, then run #2, #2B, #3, #4, & #5. Run each upgrade...
  7. whut

    Update database table

    Interesting idea for a book, video tutorial, etc. That would be fun to put that together.
  8. whut

    Importing users

    :cool: The imports functionality has increased a few times over the last few years. scubadave is now a user on my test server with extension and device. lols
  9. whut

    Importing users

    @Scubadave112 you are correct on many points. But, you can include fields such as the group (permissions group name) in your user import. Highlighted below. When you submit this, on the next page you can see in the drop downs the available tables and fields. We see group name included, but...
  10. whut

    Error Creating SIP UA for profile: external-ipv6

    This looks like the issue: It appears new(ish) installations have sip profiles that are referring to variables on Advanced > Variables that no longer exist. :eek:o_O An oversight in changes to the code. 1. edit each internal sip profiles 2. make sure the sip-port variable is set to 5060 and...
  11. whut

    SOLVED letsencrypt.sh not working

    I would have disabled the firewall too temporarily to get lets encrypt to work. After running this in lets encrypt TEST as cemotyz09 suggested and it worked, did you run without the added extra TEST environment?
  12. whut

    FusionPBX to GPT4

    Awesome! Yes it can be scary how " smart " The AI is, but that shows what time is it how powerful it is, and should be all the better for your needs. I should have stated earlier that the heavy processing was using their whisper AI to transcribe audio and video files.
  13. whut

    Error Creating SIP UA for profile: external-ipv6

    when I ran into this issue I changed the sip ports in the sip profiles that were failing. instead of using a variable `$${external_sip_port}` and `$${external_tls_port}` change them to an unused sip port #s. sip-port = `5062` and tls-sip-port `5063` for example. Save sip profile then restart...
  14. whut

    FusionPBX to GPT4

    Oh yes. I am interested in integrating with OS tickets. Potentially very useful functionality!
  15. whut

    FusionPBX to GPT4

    This looks interesting. I have been playing with chatgpt and other AI for a few weeks now and have been thinking of ways to use in fusionpbx. In my testing I discovered, no surprise, that gpu processing is so much faster than cpu processing. cpu processing is not going to be viable as it takes...
  16. whut

    SOLVED letsencrypt.sh not working

    Be patience with stop/start/restart of f2b. Sometimes it could take forever. a.k.a. 30 - 60 seconds.
  17. whut

    T53 Hold Music not playing

    There is the problem. You are Zweiging. ;) Go to Status -> Active Calls within the correct domain, dial the MOH test code *9664, listen for the MOH and watch the active calls page. You are looking for the page to display the MOH "playback:local_stream://default". Then watch the active calls...
  18. whut

    SOLVED letsencrypt.sh not working

    lets encrypt will fail if your firewall rules are too tight. You might temporary suspend fail2ban service while you run the lets encrypt script. That usually solves it for me. Make sure to start f2b service again as soon as you are done updating certs!
  19. whut

    T53 Hold Music not playing

    What version of fusion? Older versions did not set variables correctly for transfer. Are you using the default MOH or your own added MOH?
  20. whut

    Help with dial plan settings

    Look at the valet_park dialplan and you will see a good example of Group in action. Group 0: if these conditions are met, then set the referred_by_user. Group 1: if these conditions are met then do this ... Inline = true is like saying "Set this NOW to ensure set" The call-direction outbound...