<?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"
	>
<channel>
	<title>Comments on: Turning on display_errors in WAMP - Video Tutorial</title>
	<atom:link href="http://www.killerphp.com/articles/php-display_errors-in-wamp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.killerphp.com/articles/php-display_errors-in-wamp/</link>
	<description>Dedicated to teaching web designers PHP.</description>
	<pubDate>Fri, 21 Nov 2008 23:23:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Stefan Mischook</title>
		<link>http://www.killerphp.com/articles/php-display_errors-in-wamp/#comment-27459</link>
		<dc:creator>Stefan Mischook</dc:creator>
		<pubDate>Fri, 31 Aug 2007 22:28:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.killerphp.com/articles/php-display_errors-in-wamp/#comment-27459</guid>
		<description>"I think it’s important to mention that display_errors should only be set to ‘on’ under development servers and should always be ‘off’ under production."

Agreed.</description>
		<content:encoded><![CDATA[<p>&#8220;I think it’s important to mention that display_errors should only be set to ‘on’ under development servers and should always be ‘off’ under production.&#8221;</p>
<p>Agreed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Girouard</title>
		<link>http://www.killerphp.com/articles/php-display_errors-in-wamp/#comment-27457</link>
		<dc:creator>Michael Girouard</dc:creator>
		<pubDate>Fri, 31 Aug 2007 22:18:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.killerphp.com/articles/php-display_errors-in-wamp/#comment-27457</guid>
		<description>I guess you set wordpress to not render anything within brackets... The content for the file is as follows:

ini_set('display_errors', 'on');
error_reporting(E_ALL);</description>
		<content:encoded><![CDATA[<p>I guess you set wordpress to not render anything within brackets&#8230; The content for the file is as follows:</p>
<p>ini_set(&#8217;display_errors&#8217;, &#8216;on&#8217;);<br />
error_reporting(E_ALL);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Girouard</title>
		<link>http://www.killerphp.com/articles/php-display_errors-in-wamp/#comment-27456</link>
		<dc:creator>Michael Girouard</dc:creator>
		<pubDate>Fri, 31 Aug 2007 22:17:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.killerphp.com/articles/php-display_errors-in-wamp/#comment-27456</guid>
		<description>Good cast.

I think it's important to mention that display_errors should only be set to 'on' under development servers and should always be 'off' under production. 

Also, display_errors will not show parse errors by default. If you want PHP to render parse errors on your development server, you'll need to set the error_reporting directive to an appropriate level.

I personally find it easier to leave them both set to the default, secure setting as they are shipped with PHP. When in development, I include a 'development.php' file which has the following content.



Cheers,
Mike G.</description>
		<content:encoded><![CDATA[<p>Good cast.</p>
<p>I think it&#8217;s important to mention that display_errors should only be set to &#8216;on&#8217; under development servers and should always be &#8216;off&#8217; under production. </p>
<p>Also, display_errors will not show parse errors by default. If you want PHP to render parse errors on your development server, you&#8217;ll need to set the error_reporting directive to an appropriate level.</p>
<p>I personally find it easier to leave them both set to the default, secure setting as they are shipped with PHP. When in development, I include a &#8216;development.php&#8217; file which has the following content.</p>
<p>Cheers,<br />
Mike G.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: developercast.com &#187; Stefan Mischook&#8217;s Blog: Turning on display_errors in WAMP - Video Tutorial</title>
		<link>http://www.killerphp.com/articles/php-display_errors-in-wamp/#comment-27406</link>
		<dc:creator>developercast.com &#187; Stefan Mischook&#8217;s Blog: Turning on display_errors in WAMP - Video Tutorial</dc:creator>
		<pubDate>Fri, 31 Aug 2007 14:16:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.killerphp.com/articles/php-display_errors-in-wamp/#comment-27406</guid>
		<description>[...] Stefan Mischook has posted another video tutorial to help developers get started in their PHP travels. This time it covers how to turn on errors when using the popular WAMP installation package.   Within a WAMP installation, I ran into a little issue today when trying to change php.ini&#8217;s &#8216;display_errors&#8217; property. By default WAMP installs with &#8216;display_errors&#8217; to &#8216;Off&#8217; - This is a pain-in-the-ass setting when trying to write new PHP code because errors don&#8217;t get displayed in the browser window [...]</description>
		<content:encoded><![CDATA[<p>[...] Stefan Mischook has posted another video tutorial to help developers get started in their PHP travels. This time it covers how to turn on errors when using the popular WAMP installation package.   Within a WAMP installation, I ran into a little issue today when trying to change php.ini&#8217;s &#8216;display_errors&#8217; property. By default WAMP installs with &#8216;display_errors&#8217; to &#8216;Off&#8217; - This is a pain-in-the-ass setting when trying to write new PHP code because errors don&#8217;t get displayed in the browser window [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PHPDeveloper.org</title>
		<link>http://www.killerphp.com/articles/php-display_errors-in-wamp/#comment-27330</link>
		<dc:creator>PHPDeveloper.org</dc:creator>
		<pubDate>Fri, 31 Aug 2007 02:10:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.killerphp.com/articles/php-display_errors-in-wamp/#comment-27330</guid>
		<description>&lt;strong&gt;Stefan Mischook's Blog: Turning on display_errors in WAMP - Video Tutorial...&lt;/strong&gt;

...</description>
		<content:encoded><![CDATA[<p><strong>Stefan Mischook&#8217;s Blog: Turning on display_errors in WAMP - Video Tutorial&#8230;</strong></p>
<p>&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
