Files
fusionpbx/app/xml_cdr/app_defaults.php
FusionPBX f641d32195 Update xml_cdr service
Use array_slice to make the code more efficient

Service is unable to create the directories. Make the failed directories with app_defaults when run from command line.

php /var/www/fusionpbx/core/upgrade/upgrade.php
chown -R www-data:www-data /var/log/freeswitch/xml_cdr
2025-08-16 11:54:51 -06:00

59 lines
1.8 KiB
PHP

<?php
/*
FusionPBX
Version: MPL 1.1
The contents of this file are subject to the Mozilla Public License Version
1.1 (the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the
License.
The Original Code is FusionPBX
The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com>
Portions created by the Initial Developer are Copyright (C) 2008-2025
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
//make sure that prefix-a-leg is set to true in the xml_cdr.conf.xml file
if ($domains_processed == 1) {
//get the xml_cdr directory
$xml_cdr_dir = $settings->get('switch', 'log').'/xml_cdr';
//create the failed/size directory
if (!file_exists($xml_cdr_dir.'/failed/size')) {
mkdir($xml_cdr_dir.'/failed/size', 0660, true);
}
//create the failed/invalid_xml directory
if (!file_exists($xml_cdr_dir.'/failed/invalid_xml')) {
mkdir($xml_cdr_dir.'/failed/invalid_xml', 0660, true);
}
/*
$file_contents = file_get_contents($_SESSION['switch']['conf']['dir']."/autoload_configs/xml_cdr.conf.xml");
$file_contents_new = str_replace("param name=\"prefix-a-leg\" value=\"false\"/", "param name=\"prefix-a-leg\" value=\"true\"/", $file_contents);
if ($file_contents != $file_contents_new) {
$fout = fopen($_SESSION['switch']['conf']['dir']."/autoload_configs/xml_cdr.conf.xml","w");
fwrite($fout, $file_contents_new);
fclose($fout);
if ($display_type == "text") {
echo " xml_cdr.conf.xml: updated\n";
}
}
*/
}
?>