Where i need to place my "myScriptLog" Log File and what are the confogurations to Log the PHP Application
Below is the Sample Syslog Code
openlog("myScriptLog", LOG_PID | LOG_PERROR, LOG_LOCAL0);
if (authorized_client()) {
// do something
} else {
// unauthorized client!
// log the attempt
$access = date("Y/m/d H:i:s");
syslog(LOG_WARNING, "Unauthorized client: $access {$_SERVER['REMOTE_ADDR']} ({$_SERVER['HTTP_USER_AGENT']})");
}
closelog();