Fusionpbx 5.4 Version CDR Not Work

myopenbd

New Member
Sep 15, 2024
1
0
0
35
Fusionpbx 5.4 Version Debain 12 CDR Not Show Any Data Any One Help me.
 

Attachments

  • Screenshot 2025-09-08 181050.png
    Screenshot 2025-09-08 181050.png
    207.7 KB · Views: 4
Last edited:
Oh, my friend.
If this is an upgrade go into your /etc/freeswitch/autoload_configs/xml_cdr.conf.xml. Update it to look like this. This will force it to save to the file system. We used to use the HTTP POST but it's just not the best solution. Saving to the file system is more dependable.

<!--<param name="url" value="http://127.0.0.1/app/xml_cdr/xml_cdr_import.php"/>-->

Save it then run these commands

fs_cli -x 'reloadxml'
fs_cli -x 'reload mod_xml_cdr'


Now add the following line to your cron job

crontab -e

* * * * * /usr/bin/php /var/www/fusionpbx/app/xml_cdr/xml_cdr_import.php 300


A new install on Debian will set this up by default.