Re: CakePHP 1.3.8 and 1.2.10 released

2012-11-04 Thread kani
Thank you :) On Monday, March 21, 2011 4:47:35 AM UTC+8, mark_story wrote: > > The CakePHP core team is proud to announce the immediate availability > of CakePHP 1.3.8 and 1.2.10. These releases are bugfix/maintenance > releases for the 1.2 and 1.3 branches. Since the release CakePHP 1.3.7 > i

RE: CakePHP 1.3.8 and 1.2.10 released

2012-11-04 Thread topazgirl
-Original Message- From: cake-php@googlegroups.com [mailto:cake-php@googlegroups.com] On Behalf Of Meroe Kush Sent: Monday, March 21, 2011 3:19 AM To: cake-php@googlegroups.com Subject: RE: CakePHP 1.3.8 and 1.2.10 released Mark et al., Thanks for all you do. -Original Message

RE: MySQL errors within error.log

2012-11-04 Thread ans
-Original Message- From: cake-php@googlegroups.com [mailto:cake-php@googlegroups.com] On Behalf Of Jeremy Burns | Class Outfit Sent: Sunday, May 22, 2011 8:37 AM To: cake-php@googlegroups.com Subject: Re: MySQL errors within error.log Not sure this is definitive, but I have seen that bef

Built in $this->Js->submit cakephp 2.1 runs twice

2012-11-04 Thread coderBA
Fellow cakephp developers. I'm having some major problems whilst working with $this->Js->submit and calling ajax at the same time. Everything works fine, but the whole thing runs twice and I cant seem to find out why.. I asked the same question on stack overflow two days ago and noone seems t

Re: Auth->deny fails after Auth->allow('*')

2012-11-04 Thread euromark
you do realize that without always(!) noting the cake version you are working on, that no one will be able to help you here? the way it works changed quite a bit over the versions. one could only guess right now. Am Sonntag, 4. November 2012 01:16:57 UTC+1 schrieb Sam: > > Dear CakePHP experts,

Re: CakePHP 2.x and ajax

2012-11-04 Thread Jeremy Burns : Class Outfit
The ajax helper is deprecated in 2.0. Here's a quick and dirty ajax form submission: in app_controller->beforeFilter(): if ($this->RequestHandler->isAjax()) { Configure::write('debug', 0); $this->autoRender = false; $this->layout = 'ajax'; } In the section of default layout: