<?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: CakePHP + FirePHP</title>
	<atom:link href="http://www.utoxin.name/2009/02/cakephp-firephp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.utoxin.name/2009/02/cakephp-firephp/</link>
	<description>Random ramblings from the depths of my mind...</description>
	<lastBuildDate>Thu, 13 May 2010 19:37:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: NTT</title>
		<link>http://www.utoxin.name/2009/02/cakephp-firephp/comment-page-1/#comment-186</link>
		<dc:creator>NTT</dc:creator>
		<pubDate>Mon, 15 Mar 2010 03:05:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.utoxin.name/?p=62#comment-186</guid>
		<description>This article is very useful. Now I can show ANY (not just all) SQL statement. Files you need edit is:
core.php =&gt; add this statement: Configure::write(&#039;debug&#039;,2);

dbo_resoure.php =&gt; edit function logQuery
	function logQuery($sql) {
		if (Configure::read() &gt; 2)
		{
			...OLD CONTENT
		}
	}

Wraps any SQL statement you want with:
	Configure::write(&#039;debug&#039;,3);
	...SQL statement
	Configure::write(&#039;debug&#039;,2);

I sometimes encounter this error: &quot;“Fatal error: Exception thrown without a stack frame in Unknown on line 0&quot; I don&#039;t know how to fix it but SQL statement is showed although.</description>
		<content:encoded><![CDATA[<p>This article is very useful. Now I can show ANY (not just all) SQL statement. Files you need edit is:<br />
core.php =&gt; add this statement: Configure::write(&#8216;debug&#8217;,2);</p>
<p>dbo_resoure.php =&gt; edit function logQuery<br />
	function logQuery($sql) {<br />
		if (Configure::read() &gt; 2)<br />
		{<br />
			&#8230;OLD CONTENT<br />
		}<br />
	}</p>
<p>Wraps any SQL statement you want with:<br />
	Configure::write(&#8216;debug&#8217;,3);<br />
	&#8230;SQL statement<br />
	Configure::write(&#8216;debug&#8217;,2);</p>
<p>I sometimes encounter this error: &#8220;“Fatal error: Exception thrown without a stack frame in Unknown on line 0&#8243; I don&#8217;t know how to fix it but SQL statement is showed although.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: frobozz</title>
		<link>http://www.utoxin.name/2009/02/cakephp-firephp/comment-page-1/#comment-142</link>
		<dc:creator>frobozz</dc:creator>
		<pubDate>Mon, 07 Sep 2009 11:10:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.utoxin.name/?p=62#comment-142</guid>
		<description>2altintx:

try to use this in your controller class to avoid this error:

public $components = array(&#039;FirePHP&#039;);</description>
		<content:encoded><![CDATA[<p>2altintx:</p>
<p>try to use this in your controller class to avoid this error:</p>
<p>public $components = array(&#8216;FirePHP&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: turbodog</title>
		<link>http://www.utoxin.name/2009/02/cakephp-firephp/comment-page-1/#comment-116</link>
		<dc:creator>turbodog</dc:creator>
		<pubDate>Fri, 10 Apr 2009 17:19:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.utoxin.name/?p=62#comment-116</guid>
		<description>very nice!  getting the mysql output in firephp makes it even more helpful!  thank you.</description>
		<content:encoded><![CDATA[<p>very nice!  getting the mysql output in firephp makes it even more helpful!  thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: altintx</title>
		<link>http://www.utoxin.name/2009/02/cakephp-firephp/comment-page-1/#comment-102</link>
		<dc:creator>altintx</dc:creator>
		<pubDate>Sun, 15 Mar 2009 16:59:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.utoxin.name/?p=62#comment-102</guid>
		<description>Following these directions ends up with a &quot;Fatal error: Exception thrown without a stack frame in Unknown on line 0&quot; at the end of the page. A little research suggests this is because you can&#039;t throw an exception in an errorhandler, but that seems to be the only premise of FirePHP.class.php so I&#039;m not sure where to turn to. Have you run into this or have any advice?</description>
		<content:encoded><![CDATA[<p>Following these directions ends up with a &#8220;Fatal error: Exception thrown without a stack frame in Unknown on line 0&#8243; at the end of the page. A little research suggests this is because you can&#8217;t throw an exception in an errorhandler, but that seems to be the only premise of FirePHP.class.php so I&#8217;m not sure where to turn to. Have you run into this or have any advice?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Utoxin</title>
		<link>http://www.utoxin.name/2009/02/cakephp-firephp/comment-page-1/#comment-70</link>
		<dc:creator>Utoxin</dc:creator>
		<pubDate>Mon, 02 Mar 2009 16:50:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.utoxin.name/?p=62#comment-70</guid>
		<description>I followed the &#039;Standalone&#039; instructions here:

http://www.firephp.org/HQ/Install.htm

As for updating the tutorial, maybe I&#039;ll do that later today. Thanks for your feedback.</description>
		<content:encoded><![CDATA[<p>I followed the &#8216;Standalone&#8217; instructions here:</p>
<p><a href="http://www.firephp.org/HQ/Install.htm" rel="nofollow">http://www.firephp.org/HQ/Install.htm</a></p>
<p>As for updating the tutorial, maybe I&#8217;ll do that later today. Thanks for your feedback.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
