From owner-freebsd-questions@FreeBSD.ORG Fri Jan 21 17:33:53 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 9AAE016A4CE for ; Fri, 21 Jan 2005 17:33:53 +0000 (GMT) Received: from ns1.tiadon.com (SMTP.tiadon.com [69.27.132.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0805843D55 for ; Fri, 21 Jan 2005 17:33:53 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from [69.27.131.0] ([69.27.131.0]) by ns1.tiadon.com with Microsoft SMTPSVC(6.0.3790.211); Fri, 21 Jan 2005 11:33:37 -0600 Message-ID: <41F13CFA.9050205@daleco.biz> Date: Fri, 21 Jan 2005 11:33:46 -0600 From: Kevin Kinsey User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.3) Gecko/20041210 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Gerard Samuel References: <41F136B9.20604@trini0.org> In-Reply-To: <41F136B9.20604@trini0.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 21 Jan 2005 17:33:38.0345 (UTC) FILETIME=[57776990:01C4FFDF] cc: freebsd-questions Subject: Re: [Repost] 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: Fri, 21 Jan 2005 17:33:53 -0000 Gerard Samuel wrote: > 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 PHP as an Apache module? IANAE, but wouldn't you have to change log settings in httpd.conf? Kevin Kinsey