diff --git a/app/provision/index.php b/app/provision/index.php index 592066ae99..6e4f9506d8 100644 --- a/app/provision/index.php +++ b/app/provision/index.php @@ -202,15 +202,11 @@ openlog("fusion-provisioning", LOG_PID | LOG_PERROR, LOG_LOCAL0); echo 'Authorization Required'; exit; } else { - syslog(LOG_INFO, "user received: ".$_SERVER['PHP_AUTH_USER']); - syslog(LOG_INFO, "password received: ".$_SERVER['PHP_AUTH_PW']); if ($_SERVER['PHP_AUTH_USER'] == $provision["http_auth_username"] && $_SERVER['PHP_AUTH_PW'] == $provision["http_auth_password"]) { //authorized - syslog(LOG_INFO, "sucess"); } else { //access denied - syslog(LOG_INFO, "denied"); header('WWW-Authenticate: Basic realm="'.$_SESSION['domain_name']." ".date('r').'"'); unset($_SERVER['PHP_AUTH_USER'],$_SERVER['PHP_AUTH_PW']); usleep(rand(1000000,3000000));//1-3 seconds. diff --git a/resources/install/scripts/app/conference_center/index.lua b/resources/install/scripts/app/conference_center/index.lua index c9989410bb..b7ed8aef7c 100644 --- a/resources/install/scripts/app/conference_center/index.lua +++ b/resources/install/scripts/app/conference_center/index.lua @@ -723,7 +723,9 @@ --send the call to the conference cmd = meeting_uuid.."-"..domain_name.."@"..profile.."+flags{".. flags .."}"; + freeswitch.consoleLog("INFO","[conference center] conference " .. cmd .. "\n"); session:execute("conference", cmd); end end - end \ No newline at end of file + end +