FreePBX version 15.0.17.52 or higher is required, you have 15.0.17.43

I’ve installed freepbx 15 on centos 8 using the url:
[http://mirror.freepbx.org/modules/packages/freepbx/freepbx-15.0-latest.tgz]
but I’m unable to install the module backup. I get:
Unable to install module backup
FreePBX version 15.0.17.52 or higher is required, you have 15.0.17.43
but the url says I should have freepbx-15.0-latest.tgz. is this just a case of waiting for 15.0.17.52 to become available?

I just regenerated tar ball with the latest modules, so can you please download the tarball again and give try. thanks

1 Like

Thank you! I posted the same question yesterday.
How do I reinstall PBX?

Hi @civilpolisen

You can re-install FreePBX by following below steps

NOTE: THIS WILL REMOVE ALL YOUR EXISTING CONFIGURATION. SO PLEASE BE 100% SURE BEFORE PROCEEDING.

Drop the database tables

mysql -u root
DROP DATABASE asterisk;
DROP DATABASE asteriskcdrdb;
exit;

Delete the FreePBX related files

rm -rf /usr/sbin/fwconsole
rm -rf /var/lib/asterisk/bin/*
rm -rf /var/www/html/*
rm -rf /etc/amportal.conf
rm -rf /etc/freepbx.conf
rm -rf /etc/asterisk/freepbx-id
rm -rf /etc/asterisk/freepbx_module_admin.conf

To install the FreePBX from the tar file follow below commands

cd /usr/src
//change the freepbx version with your testing version
wget http://mirror.freepbx.org/modules/packages/freepbx/freepbx-15.0-latest.tgz
tar vxfz freepbx-15.0-latest.tgz
rm -f freepbx-15.0-latest.tgz
touch /etc/asterisk/{modules,cdr}.conf
cd freepbx
./start_asterisk start
./install -n

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.