You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
575 B

<?php
error_reporting(E_ALL);
ini_set('display_errors', 0);
ini_set("memory_limit", "512M");
/******** DESCOMENTE AS LINHAS ABAIXO PARA UM LOG DETALHADO *******/
$filename = "/var/log/asterisk/display_erros.log";
if (!file_exists('/var/log/asterisk/display_erros.log')) {
file_put_contents($filename, '');
exec(" chown pbx:pbx {$filename}");
} else {
if(filesize($filename) >= 1073741824){
unlink($filename);
}
}
ini_set('log_errors', true);
ini_set('error_log', '/var/log/asterisk/display_erros.log');
ini_set('log_errors_max_len', 4096);