I installed php on my windows XP
I set
error_log = syslog
in php.ini. then stop/start IIS services
I also try
error_log = "/log.txt"
error_log = syslog
in ini. then stop/start IIS services
I used the statement
openlog("myScripLog", LOG_PID | LOG_PERROR, LOG_USER);
syslog(LOG_WARNING, "Unauthorized client");
closelog();
After I run this log.php, I could not find the system log file and this message did not show up in the event viewer.
Then I try
error_log("Message", 0, "log.txt");
then, I run this log1.php
I could not find where to loged