Search code examples
phploggingerror-handlingsyslog

Using Configuration in PHP


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();

Solution

  • This may help you

    http://www.phpclasses.org/browse/file/12157.html

    use the above class to log the sys errors