Hi,
maybe someone else has just found this issue.
I've installed fusionbx stable today and Dialplan Manager page was not working.
Looking at nginx error.log I saw: "PHP message: PHP Parse error: syntax error, unexpected ';' in /var/www/fusionpbx/app/dialplans/dialplans.php on line 317"
Editing that page, at row 316
if (is_uuid($row['app_uuid']) {
As you may see, a round bracket is missing. Fix it using:
if (is_uuid($row['app_uuid'])) {
Cheers
maybe someone else has just found this issue.
I've installed fusionbx stable today and Dialplan Manager page was not working.
Looking at nginx error.log I saw: "PHP message: PHP Parse error: syntax error, unexpected ';' in /var/www/fusionpbx/app/dialplans/dialplans.php on line 317"
Editing that page, at row 316
if (is_uuid($row['app_uuid']) {
As you may see, a round bracket is missing. Fix it using:
if (is_uuid($row['app_uuid'])) {
Cheers