<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to set up error logging with PHP</title>
	<atom:link href="http://www.julianbez.com/blog/2006/02/19/how-to-set-up-error-logging-with-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.julianbez.com/blog/2006/02/19/how-to-set-up-error-logging-with-php/</link>
	<description>web design, standards, all that stuff</description>
	<lastBuildDate>Sun, 22 Aug 2010 09:35:39 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Sean</title>
		<link>http://www.julianbez.com/blog/2006/02/19/how-to-set-up-error-logging-with-php/#comment-153476</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Sun, 04 Jul 2010 13:14:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.julian-bez.de/blog/2006/02/19/how-to-set-up-error-logging-with-php/#comment-153476</guid>
		<description>Do you need to create the error log file yourself first? Or does php create this for you when error logging is enabled?

Also, if you need to create this file, does it need any special permissions?</description>
		<content:encoded><![CDATA[<p>Do you need to create the error log file yourself first? Or does php create this for you when error logging is enabled?</p>
<p>Also, if you need to create this file, does it need any special permissions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ticket</title>
		<link>http://www.julianbez.com/blog/2006/02/19/how-to-set-up-error-logging-with-php/#comment-10707</link>
		<dc:creator>Ticket</dc:creator>
		<pubDate>Wed, 01 Nov 2006 23:23:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.julian-bez.de/blog/2006/02/19/how-to-set-up-error-logging-with-php/#comment-10707</guid>
		<description>In PHP 5 a new error level E_STRICT is available. As E_STRICT is not included within E_ALL you have to explicitly enable this kind of error level. Enabling E_STRICT during development has some benefits. STRICT messages will help you to use the latest and greatest suggested method of coding, for example warn you about using deprecated functions.</description>
		<content:encoded><![CDATA[<p>In PHP 5 a new error level E_STRICT is available. As E_STRICT is not included within E_ALL you have to explicitly enable this kind of error level. Enabling E_STRICT during development has some benefits. STRICT messages will help you to use the latest and greatest suggested method of coding, for example warn you about using deprecated functions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.julianbez.com/blog/2006/02/19/how-to-set-up-error-logging-with-php/#comment-2759</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Wed, 22 Feb 2006 22:44:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.julian-bez.de/blog/2006/02/19/how-to-set-up-error-logging-with-php/#comment-2759</guid>
		<description>&lt;blockquote cite=&quot;http://www.php.net/manual/en/ref.errorfunc.php#ini.error-reporting&quot;&gt;In PHP 5 a new error level E_STRICT is available. As E_STRICT is not included within E_ALL you have to explicitly enable this kind of error level. Enabling E_STRICT during development has some benefits. STRICT messages will help you to use the latest and greatest suggested method of coding, for example warn you about using deprecated functions.&lt;/blockquote&gt;
To enable this, use &lt;code&gt;error_reporting(E_ALL &#124; E_STRICT);&lt;/code&gt;</description>
		<content:encoded><![CDATA[<blockquote cite="http://www.php.net/manual/en/ref.errorfunc.php#ini.error-reporting"><p>In PHP 5 a new error level E_STRICT is available. As E_STRICT is not included within E_ALL you have to explicitly enable this kind of error level. Enabling E_STRICT during development has some benefits. STRICT messages will help you to use the latest and greatest suggested method of coding, for example warn you about using deprecated functions.</p></blockquote>
<p>To enable this, use <code>error_reporting(E_ALL | E_STRICT);</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>
