Question

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();
Was it helpful?

Solution

This may help you

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

use the above class to log the sys errors

OTHER TIPS

Maybe use error_log? http://de3.php.net/manual/en/function.error-log.php

Then you can specify the destination:

bool error_log ( string $message [, int $message_type = 0 [, string $destination [, string $extra_headers ]]] )

EDIT: Or you could use syslog: http://www.php.net/manual/en/function.syslog.php then your logs will just go to syslog instead of myScriptLog (depends what you need).

Does that help?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top