From owner-freebsd-questions@FreeBSD.ORG Thu Jan 20 21:42:03 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA2F416A4CE for ; Thu, 20 Jan 2005 21:42:03 +0000 (GMT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B29943D1F for ; Thu, 20 Jan 2005 21:42:03 +0000 (GMT) (envelope-from fbsd-questions@trini0.org) Received: from hivemind.trini0.org (trini0.org[65.34.205.195]) by comcast.net (rwcrmhc11) with ESMTP id <20050120214200013009g9h9e>; Thu, 20 Jan 2005 21:42:00 +0000 Received: from [192.168.0.16] (gladiator.trini0.org [192.168.0.16]) by hivemind.trini0.org (Postfix) with ESMTP id 7C48460C6 for ; Thu, 20 Jan 2005 16:42:00 -0500 (EST) Message-ID: <41F025B0.5070703@trini0.org> Date: Thu, 20 Jan 2005 16:42:08 -0500 From: Gerard Samuel User-Agent: Mozilla Thunderbird 1.0 (X11/20050105) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: php log to own syslog file X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jan 2005 21:42:03 -0000 Im trying to figure out how to setup FreeBSD 5.3 to log php events to its own log file via syslog. In /etc/syslog.conf, I added -> # php logs !httpd *.* /var/log/php.log I created a empty file for the log -> gladiator# touch /var/log/php.log gladiator# ls -l /var/log/php* -rw-r--r-- 1 root wheel 0 Jan 20 16:37 /var/log/php.log Then I HUPped syslogd -> gladiator# ps aux | grep syslogd root 277 0.0 0.2 1316 908 ?? Is 4:14PM 0:00.01 /usr/sbin/syslogd -s gladiator# kill -HUP 277 In my php script, Im using -> define_syslog_variables(); openlog('TESTING', LOG_NDELAY, LOG_USER); syslog(LOG_INFO, $message); closelog(); But nothing is being logged to the file. Am I doing something wrong on the FreeBSD side of things?? Thanks