SQL don't appears

2010-07-30 Thread Gildonei Mendes A. (Junior)
Hi, I'm starting with CakePHP, and I'm using the latest version of cakePHP (1.3.3), I configured my core.php with debug, 2, but the SQL statements doesn't apper on the window. A sample of the project is hosted at http://www.sitecomarte.com.br/nutriaqua. Some links aren't functional, I already

Re: SQL don't appears

2010-07-30 Thread cricket
On Fri, Jul 30, 2010 at 7:48 AM, Gildonei Mendes A. (Junior) anjol...@gmail.com wrote: Hi, I'm starting with CakePHP, and I'm using the latest version of cakePHP (1.3.3), I configured my core.php with debug, 2, but the SQL statements doesn't apper on the window. See this page:

Re: SQL don't appears

2010-07-30 Thread Vijay Kumbhar
Hello Gildonie, You have to add the following line in you layout, ?php echo $this-element('sql_dump'); ? cake 1.3 doesn't directly displays the sql statements as like cake 1.2 if your debug mode is 2. On Fri, Jul 30, 2010 at 5:18 PM, Gildonei Mendes A. (Junior) anjol...@gmail.com wrote: Hi,

Re: SQL don't appears

2010-07-30 Thread Gildonei Mendes A. (Junior)
Thank you men. It works. =) On 30 jul, 12:50, Vijay Kumbhar k.vidn...@gmail.com wrote: Hello Gildonie, You have to add the following line in you layout, ?php echo $this-element('sql_dump'); ? cake 1.3 doesn't directly displays the sql statements as like cake 1.2 if your debug mode is 2.