Re: Session setFlash is not working on Firefox 3.5.3

2009-11-20 Thread Octavian
Reinstalled FF, works perfectly. -- You received this message because you are subscribed to the Google Groups CakePHP group. To post to this group, send email to cake-...@googlegroups.com. To unsubscribe from this group, send email to cake-php+unsubscr...@googlegroups.com. For more options,

Re: Session setFlash is not working on Firefox 3.5.3

2009-11-06 Thread nurvzy
@John: You are mistaken. First, if that were the case, flashes wouldn't work in all the other browser which the OP clearly stated it does, and secondly, the entire point of flash is to pass a message to the user through a redirect. I use them all the time and they work perfectly well through

Session setFlash is not working on Firefox 3.5.3

2009-10-09 Thread Franco Bonazza
Hello, Here's my problem Something this simple: // controller Class ExsController extends AppController{ public function list(){ $this-Session-setFlash('Hello'); $this-redirect('/exs/new',null,true); // or redirect + die() } public function new(){} } // view layout ?php

Re: Session setFlash is not working on Firefox 3.5.3

2009-10-09 Thread Franco Bonazza
Sorry, Cake is 1.2.5, server is Apache 2.2 running on windows, and PHP is 5.2. Don't know if it's relevant. On 9 oct, 17:12, Franco Bonazza fviki...@gmail.com wrote: Hello, Here's my problem Something this simple: // controller Class ExsController extends AppController{ public