Re: Cake CLI no longer works

2013-06-26 Thread Rachman Chavik
On Tue, 25 Jun 2013 09:26:37 -0700, Ribamar FS wrote: Try to upgrade to Ubuntu 12.10. The version of PHP is the problem. No. I've been running stock php from 12.04 + several custom compiled PHP without issue. The problem lies somewhere else. Em domingo, 5 de maio de 2013 05h29min50s UTC-3,

Re: Model::AfterFind $results format, associations

2013-06-26 Thread AD7six
On Tuesday, 25 June 2013 20:21:54 UTC+2, Vanja Dizdarević wrote: As many have failed before me, I am trying to massage some data in the afterFind callback in CakePHP 2.3.6. public function afterFind($results, $primary = false) { $results = parent::afterFind($results, $primary);

Re: Naviagation in a CakePHP application

2013-06-26 Thread Sam Marshall
Have you added 'Auth' into your $components variable in the AppController? Also, I think that Auth needs to be used from the controller - you could always dump the information you need to a variable in your controller and then pass it to the view for use. On Saturday, June 22, 2013 7:54:50

CakePHP Events

2013-06-26 Thread John Sposato
Anyone know of any good tutorials/examples on how to use the event system? -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because you are subscribed to the Google Groups CakePHP group. To unsubscribe from

CakeLog and scope : Restricting scope to only one logger

2013-06-26 Thread Reuben
Hi I'd like to set a up log file so that only messages with a scope of soap get logged to that file. Conversely, I'd also like to prevent messages with a scope of soap being logged against the default logs of debug and error. Here is my current setup in bootstrap.php.

Catching CakeEmail errors

2013-06-26 Thread Sarah
I have legacy data in the database and that means incomplete email addresses have been entered by users. I can use validate to ensure all new ones are good but I still have to live with the old. My code is pretty simple $Email = new CakeEmail('smtp'); $Email-to($email);