Re: Formatar a mensagem - $this->Session->setFlash(__('minha msg'));

2013-04-22 Thread Tony Messias
; Então, na página default.ctp eu tenho a seguinte linha: > $this->Session->flash(); ?> >> Quando uma mensagem é setada é essa linha que exibe, correto? >> >> Então se eu tenho uma mensagem de sucesso: $this->Session->setFlash(__('* >> *Usuário cadastrado com suces

Re: Formatar a mensagem - $this->Session->setFlash(__('minha msg'));

2013-04-22 Thread Anderson Moraes
o, na página default.ctp eu tenho a seguinte linha: $this->Session->flash(); ?> > Quando uma mensagem é setada é essa linha que exibe, correto? > > Então se eu tenho uma mensagem de sucesso: > $this->Session->setFlash(__('Usuário cadastrado com sucesso.')

Re: Formatar a mensagem - $this->Session->setFlash(__('minha msg'));

2013-04-22 Thread Tony Messias
antoniosmessias> 2013/4/22 Anderson Moraes > Boa tarde pessoal, > > Então, na página default.ctp eu tenho a seguinte linha: $this->Session->flash(); ?> > Quando uma mensagem é setada é essa linha que exibe, correto? > > Então se eu tenho uma mensagem de su

Formatar a mensagem - $this->Session->setFlash(__('minha msg'));

2013-04-22 Thread Anderson Moraes
Boa tarde pessoal, Então, na página default.ctp eu tenho a seguinte linha: Session->flash(); ?> Quando uma mensagem é setada é essa linha que exibe, correto? Então se eu tenho uma mensagem de sucesso: $this->Session->setFlash(__('Usuário cadastrado com sucesso.'

Re: Fatal Error on call to '$this->Session->setFlash'

2012-09-13 Thread Tilen Majerle
AppController extends "Controller" class...and in this class it was automatically added this component. -- Lep pozdrav, Tilen Majerle http://majerle.eu 2012/9/13 McScreech > Thank you very much, I had forgot to include the Session component. > > I haven't begun a new project in some time (sinc

Re: Fatal Error on call to '$this->Session->setFlash'

2012-09-13 Thread McScreech
Thank you very much, I had forgot to include the Session component. I haven't begun a new project in some time (since about cake 1.2) - forgot some basis setup stuff, I guess I was thinking the basic components and helpers were included by default. I do wonder however, how it _was_ able to work

Re: Fatal Error on call to '$this->Session->setFlash'

2012-09-13 Thread Tilen Majerle
l to a member function setFlash() on a non-object' > which happens on any call to '$this->Session->setFlash' as noted in the > default edit (or add) function below? > > I was adding options to the related form (option lists, labels, titles) > when I broke it and have been

Fatal Error on call to '$this->Session->setFlash'

2012-09-13 Thread McScreech
G'day, I do not understand how I induced this error: 'Error: Call to a member function setFlash() on a non-object' which happens on any call to '$this->Session->setFlash' as noted in the default edit (or add) function below? I was adding options to the related for

Session::setFlash dosn't work under chrome

2012-04-01 Thread rvcT
*cake version:* 2.1.1 *chrome version:* 18.0.1025.142 m Latest *code to reproduce error:* put in controller action: public function testflash(){ $this->Session->setFlash("flash message will not be shown in chrome"); $this->redirect(array('action' => 'index

Re: $this->Session->setFlash problem

2010-12-22 Thread euromark
o remove that 1 > > > Thanks > > Sherry > > -- > > View this message in context: > >http://cakephp.1045679.n5.nabble.com/this-Session-setFlash-problem-tp... > > Sent from the CakePHP mailing list archive at Nabble.com. > > > Check out the new CakePHP

Re: $this->Session->setFlash problem

2010-12-22 Thread Stephen
> Thanks > Sherry > -- > View this message in context: > http://cakephp.1045679.n5.nabble.com/this-Session-setFlash-problem-tp3314357p3314653.html > Sent from the CakePHP mailing list archive at Nabble.com. > > Check out the new CakePHP Questions site http://cakeqs.org and help

Re: $this->Session->setFlash problem

2010-12-21 Thread sherzo
Thank you guys! yes Im using 1.2 and after I removing "echo" I'm not having that "1"!!! I spent hours last night to remove that 1 Thanks Sherry -- View this message in context: http://cakephp.1045679.n5.nabble.com/this-Session-setFlash-problem-tp3314357p3314653.h

Re: $this->Session->setFlash problem

2010-12-21 Thread euromark
what version are u using? sounds to me like you you use cake1.2 but this piece of code is cake1.3 style dont echo it in 1.2 $session->flash(); On 22 Dez., 02:02, Ryan Schmidt wrote: > On Dec 21, 2010, at 18:51, sherzo wrote: > > > I have the following lines in my controller: >

Re: $this->Session->setFlash problem

2010-12-21 Thread Ryan Schmidt
On Dec 21, 2010, at 18:51, sherzo wrote: > I have the following lines in my controller: > $this->Session->setFlash('blabla'); > $this->redirect(array('action'=>'unsuccessful')); > exit(); > > and this part in my view: > if

$this->Session->setFlash problem

2010-12-21 Thread sherzo
Hi All I have the following lines in my controller: $this->Session->setFlash('blabla'); $this->redirect(array('action'=>'unsuccessful')); exit(); and this part in my view: if ($session->check('Message.flash')) { echo $session->f

Re: Session->setFlash error

2010-07-09 Thread matzeh...@googlemail.com
Isn´t the ->flash a methode of 1.3 ? Do you use 1.2 core? As I know in 1.2 you have to ->setflash and a redirect... On 9 Jul., 21:51, gautam lakum wrote: > I am getting this error in my default.ctp layout. > > Notice (8): Undefined variable: session [APP\views\layouts > \default.ctp, line 74] >

Re: Session->setFlash error

2010-07-09 Thread gautam lakum
Thanks jeremy, it is working now. On Jul 9, 1:28 pm, Jeremy Burns | Class Outfit wrote: > If you are on 1.3, don't forget to add the Session helper and Session > component to your app_controller. > > Jeremy Burns > Class Outfit > > jeremybu...@classoutfit.comhttp://www.classoutfit.com > > On 9 J

Re: Session->setFlash error

2010-07-09 Thread Jeremy Burns | Class Outfit
If you are on 1.3, don't forget to add the Session helper and Session component to your app_controller. Jeremy Burns Class Outfit jeremybu...@classoutfit.com http://www.classoutfit.com On 9 Jul 2010, at 20:51, gautam lakum wrote: > I am getting this error in my default.ctp layout. > > > Noti

Session->setFlash error

2010-07-09 Thread gautam lakum
I am getting this error in my default.ctp layout. Notice (8): Undefined variable: session [APP\views\layouts \default.ctp, line 74] Code | Context Fatal error: Call to a member function flash() on a non-object in C: \wamp\www\rentcar1\app\views\layouts\default.ctp on line 74 This is the layout

Re: Problem with Session->setFlash

2010-05-21 Thread Jeremy Burns
; It did not work with me , is there any other alternative to > setFlash() ? > > Greetings. > On May 20, 7:16 pm, Jeremy Burns wrote: >> Seems like overkill to me. Just use $this->Session->setFlash('Here is my >> message'); Then do echo $this->Session-

Re: Problem with Session->setFlash

2010-05-21 Thread sami_bk
Hi Jeremy, Thanks for your reply. It did not work with me , is there any other alternative to setFlash() ? Greetings. On May 20, 7:16 pm, Jeremy Burns wrote: > Seems like overkill to me. Just use $this->Session->setFlash('Here is my > message');  Then do echo $this->

Re: Problem with Session->setFlash

2010-05-20 Thread Jeremy Burns
Seems like overkill to me. Just use $this->Session->setFlash('Here is my message'); Then do echo $this->Session->flash(); - this not only displays your message but also clears it out of the cache. Jeremy Burns jeremybu...@me.com On 20 May 2010, at 18:16, sami_bk wrote

Problem with Session->setFlash

2010-05-20 Thread sami_bk
Hi all, I am new to CakePHP and i am building a small app. i use Session->setFlash('message') to display notifications to the users . The notification is displayed in the default layout and i delete the flash messega from the session using this code if ($session->chec

Re: cakephp 1.3 $this->Session->setFlash

2010-03-18 Thread Johannes Goll
t; You need to do: > > echo $session->flash(); now. > > Jeremy Burns > jeremybu...@me.com > > On 18 Mar 2010, at 13:06, Johannes Goll wrote: > >> Hi, >> >> I am migrating from 1.2 to cakephp 1.3 and am trying to >> switch to the new $th

Re: cakephp 1.3 $this->Session->setFlash

2010-03-18 Thread Jeremy Burns
You need to do: echo $session->flash(); now. Jeremy Burns jeremybu...@me.com On 18 Mar 2010, at 13:06, Johannes Goll wrote: > Hi, > > I am migrating from 1.2 to cakephp 1.3 and am trying to > switch to the new $this->Session->setFlash functionality that > uses

cakephp 1.3 $this->Session->setFlash

2010-03-18 Thread Johannes Goll
Hi, I am migrating from 1.2 to cakephp 1.3 and am trying to switch to the new $this->Session->setFlash functionality that uses elements: Projects Controller: function edit($id = null) { ... $this->Session->setFlash('The Project has been saved','message'); $this-

Re: $this->Session->setFlash();

2010-01-03 Thread j0n4s.h4rtm...@googlemail.com
I use this to make it lots shorter: $this->Session->setFlash(___('Success Message'), 'flashes/success'); In app/views/layouts/flashes I have P.s. in app/config/boostrap.php I have function ___($string) { return __($string, true); } Check out the new C

RE: $this->Session->setFlash();

2010-01-01 Thread Dave
->Session->setFlash(); Hi Dave Here's how you can do it: $this->Session->setFlash(__('Your message.', true), true, array ('class' => 'yourClass')); On Jan 2, 2:35 am, "Dave" wrote: > I was wondering is there a way to add a class to t

Re: $this->Session->setFlash();

2010-01-01 Thread Jeremy Burns
Hi Dave Here's how you can do it: $this->Session->setFlash(__('Your message.', true), true, array ('class' => 'yourClass')); On Jan 2, 2:35 am, "Dave" wrote: > I was wondering is there a way to add a class to the session from the >

$this->Session->setFlash();

2010-01-01 Thread Dave
I was wondering is there a way to add a class to the session from the controller? The setflash as far as i can see is used for alerting user after a save attempt so $this->Session->setFlash(__('Information Updated.', true)); or $this->Session->setFlash(__('Erro

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, v

Re: Session setFlash is not working on Firefox 3.5.3

2009-11-06 Thread nurvzy
t; > > > > Hello, > > > > > Here's my problem > > > > > Something this simple: > > > > > // controller > > > > > Class ExsController extends AppController{ > > > > public function list(){ > >

Re: Session setFlash is not working on Firefox 3.5.3

2009-10-09 Thread Franco Bonazza
ends AppController{ > public function list(){ >         $this->Session->setFlash('Hello'); >         $this->redirect('/exs/new',null,true); // or redirect + die()} > > public function new(){} > > } > > // view layout > > flash() ?> &

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 functio

Session->setFlash() params not working ??

2009-09-08 Thread Spence
Hi All, I am trying to change the class attribute for my flash message by writing this in my controller: $this->Session->setFlash($errMsg, 'default', array('class' => 'errormsg')); AND I GET THE DEFAULT IN MY VIEW: My view is not cached because chang

Re: related to Session->setFlash

2009-08-27 Thread cbhan
Sorry for the late reply.Yes, you are right, if you are doing it in views/layouts/default.ctp On Aug 21, 6:53 am, kdubya wrote: > On Aug 19, 9:01 am, zaboo wrote: > > > Don't echo $this->Session->setFlash() > > > On Aug 19, 8:27 am, Chander Bhan wrote: > &g

Re: related to Session->setFlash

2009-08-21 Thread Dr. Loboto
Yes. On Aug 21, 8:53 am, kdubya wrote: > On Aug 19, 9:01 am, zaboo wrote: > > > Don't echo $this->Session->setFlash() > > > On Aug 19, 8:27 am, Chander Bhan wrote: > > > > I always get the digit 1 in the next line of the message sent through > &

Re: related to Session->setFlash

2009-08-20 Thread kdubya
On Aug 19, 9:01 am, zaboo wrote: > Don't echo $this->Session->setFlash() > > On Aug 19, 8:27 am, Chander Bhan wrote: > > > I always get the digit 1 in the next line of the message sent through > > Session->setFlash from controller, need help I don't

Re: related to Session->setFlash

2009-08-19 Thread cbhan
thanks a lot for helping. On Aug 19, 6:01 pm, zaboo wrote: > Don't echo $this->Session->setFlash() > > On Aug 19, 8:27 am, Chander Bhan wrote: > > > I always get the digit 1 in the next line of the message sent through > > Session-&

Re: related to Session->setFlash

2009-08-19 Thread cbhan
> > Session->setFlash from controller, need help > > Are you echoing the Session->setFlash() call from the controller? > > Best regards. > > -- > MARCELO DE F. ANDRADE > Belem, PA, Amazonia, Brazil > Linux User #221105 > > http://mfandrade.wordpress.com

Re: related to Session->setFlash

2009-08-19 Thread zaboo
Don't echo $this->Session->setFlash() On Aug 19, 8:27 am, Chander Bhan wrote: > I always get the digit 1 in the next line of the message sent through > Session->setFlash from controller, need help --~--~-~--~~~---~--~~ You received this mes

Re: related to Session->setFlash

2009-08-19 Thread Marcelo Andrade
On Wed, Aug 19, 2009 at 9:27 AM, Chander Bhan wrote: > > I always get the digit 1 in the next line of the message sent through > Session->setFlash from controller, need help Are you echoing the Session->setFlash() call from the controller? Best regards. -- MARCELO DE F. AN

related to Session->setFlash

2009-08-19 Thread Chander Bhan
I always get the digit 1 in the next line of the message sent through Session->setFlash from controller, need help --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group,

Re: Problem with $this->Session->setFlash when using caching

2009-06-17 Thread Steve
thanks for the replies Marcel, sounds like sort of the same problem. strange thing is that the flash message does work when i do not specify a custom layout in setFlash... but then I can not have the nice effect of removing the flash message after few seconds. On Jun 17, 11:45 pm, Marcel wrote:

Re: Problem with $this->Session->setFlash when using caching

2009-06-17 Thread Marcel
Steve wrote: > Well, when I activate this line in core.php: > > Configure::write('Cache.disable', true); > > Everything works like expected.. > > But then you have no caching at all... See: https://trac.cakephp.org/ticket/6034 --~--~-~--~~~---~--~~ You receive

Re: Problem with $this->Session->setFlash when using caching

2009-06-17 Thread Steve
Well, when I activate this line in core.php: Configure::write('Cache.disable', true); Everything works like expected.. But then you have no caching at all... On Jun 17, 3:00 pm, Marcel wrote: > Looks like that this is also not working within nocache, like the > FormHelper... :( --~--~

Re: Problem with $this->Session->setFlash when using caching

2009-06-17 Thread Marcel
Looks like that this is also not working within nocache, like the FormHelper... :( --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to cake-php@googlegroups.com To u

Problem with $this->Session->setFlash when using caching

2009-06-16 Thread Steve
Hello everybody, I have a problem with some cakephp (version 1.2.3.8166) code. It concerns using $this->Session->setFlash in a controller action. Part of the controller code: $this->Session->setFlash(__('Everything fine.', true), 'flashinfo'); $this->redirect(

Re: Problem with $this->Session->setFlash(__('Hidden value changed'));

2009-04-08 Thread Elavazhagan chidambaram
__()function is using Localization & Internationalization if u want the __()function $this->Session->setFlash(__('Hidden value changed',true));otherwise $this->Session->setFlash('Hidden value changed');On Tue, Apr 7, 2009 at 5:11 PM, Toby wrote: > >

Re: Problem with $this->Session->setFlash(__('Hidden value changed'));

2009-04-07 Thread Toby
1 pm, Toby wrote: > Morning all, > > I have a problem with the following line in my code... > > $this->Session->setFlash(__('Hidden value changed')); > > It is printing the translated 'Hidden value changed' to the screen > rather than setting the fl

Re: Problem with $this->Session->setFlash(__('Hidden value changed'));

2009-04-07 Thread Günther Theilen
Hi, Toby wrote: > I have a problem with the following line in my code... > > $this->Session->setFlash(__('Hidden value changed')); try this: $this->Session->setFlash(__('Hidden value changed', true)); http://api.cakephp.org/file

Problem with $this->Session->setFlash(__('Hidden value changed'));

2009-04-07 Thread Toby
Morning all, I have a problem with the following line in my code... $this->Session->setFlash(__('Hidden value changed')); It is printing the translated 'Hidden value changed' to the screen rather than setting the flash message. If I remove the __() function it work

Session - setFlash - redirect - GONE!

2009-01-15 Thread deedod
// Save the URL of where you want to go. $this->Session->setFlash('You must login to view this area.'); $this->Session->write('RedirectURL', Router::url('', false)); $this->redirect('/a

Re: Session->setFlash()

2008-02-17 Thread villas
pm, Baz <[EMAIL PROTECTED]> wrote: > > > Because that's what setFlash does??? > > > On Feb 16, 2008 10:04 AM, Samuel DeVore <[EMAIL PROTECTED]> wrote: > > > > wow you echoed again ;) > > > > On Feb 16, 2008 7:20 AM, herc <[EMAIL PROTECTED]

Re: Session->setFlash()

2008-02-17 Thread herc
t; > On Feb 16, 2008 7:20 AM, herc <[EMAIL PROTECTED]> wrote: > > > > Any idea why my $this->Session->setFlash('foo'); outputs Foo 1 in my > > > view? :) > > > CODE: > > > foo1 > > > -- > > -- > > (the

Re: Session->setFlash()

2008-02-16 Thread Samuel DeVore
wow you echoed again ;) On Feb 16, 2008 7:20 AM, herc <[EMAIL PROTECTED]> wrote: > > Any idea why my $this->Session->setFlash('foo'); outputs Foo 1 in my > view? :) > CODE: > foo1 > > > > -- -- (the old fart) the advice is free, the la

Session->setFlash()

2008-02-16 Thread herc
Any idea why my $this->Session->setFlash('foo'); outputs Foo 1 in my view? :) CODE: foo1 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this gro

Re: Can I use Session::setFlash from model?

2008-01-22 Thread AD7six
On Jan 22, 10:57 pm, powtac <[EMAIL PROTECTED]> wrote: > But what can I do when Im using beforeFind()? I dont call this > function in my controller, it is called automatically. Don't. --~--~-~--~~~---~--~~ You received this message because you are subscribed to t

Re: Can I use Session::setFlash from model?

2008-01-22 Thread powtac
But what can I do when Im using beforeFind()? I dont call this function in my controller, it is called automatically. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email

Re: Can I use Session::setFlash from model?

2008-01-06 Thread Anupom
Or you can pass the Session component to your model function as parameter, so that you can access this component from there, In your Controller, $this->YourModelName->yourModelFunction($this->session) And in your Model function function yourModelFunction($session) { $session->se

Re: Can I use Session::setFlash from model?

2008-01-06 Thread AD7six
On Jan 5, 6:21 pm, MikeK <[EMAIL PROTECTED]> wrote: > I moved some code from a controller to the model, and the code set > some flash error msgs using the session component setFlash call. > > I didn't realize it wasn't working until someone triggered the error > today -- is there any way to make

Re: Can I use Session::setFlash from model?

2008-01-05 Thread Robby Anderson
According to both APIs (1.1.19 and 1.2) the Session helper supports a write() method - but both APIs also say "This method should not be used in a view". :) On Jan 5, 11:21 am, MikeK <[EMAIL PROTECTED]> wrote: > I moved some code from a controller to the model, and the code set > some flash er

Can I use Session::setFlash from model?

2008-01-05 Thread MikeK
I moved some code from a controller to the model, and the code set some flash error msgs using the session component setFlash call. I didn't realize it wasn't working until someone triggered the error today -- is there any way to make that work or do I need to restructure the interface to the rou

Re: $this->Session->setFlash(' -- msg here -- '); not showing up on 1.2.x

2007-12-10 Thread Louie Miranda
endif; > ?> > > Or the like. > > -Casey > > On Dec 9, 10:44 pm, "Louie Miranda" <[EMAIL PROTECTED]> wrote: > > Got this working.. > > > > Just add.. > > > > $this->Session->setFlash('Sorry, the infor

Re: $this->Session->setFlash(' -- msg here -- '); not showing up on 1.2.x

2007-12-10 Thread daphonz
> Just add.. > > $this->Session->setFlash('Sorry, the information you\'ve > entered is incorrect.'); > $this->redirect('login'); > > *$this->redirect('login');* > > So, there will be no blank

Re: $this->Session->setFlash(' -- msg here -- '); not showing up on 1.2.x

2007-12-09 Thread Louie Miranda
Got this working.. Just add.. $this->Session->setFlash('Sorry, the information you\'ve entered is incorrect.'); $this->redirect('login'); *$this->redirect('login');* So, there will be no blank page. And the flash

$this->Session->setFlash(' -- msg here -- '); not showing up on 1.2.x

2007-12-09 Thread Louie Miranda
n->write('User', $user); $this->Session->setFlash('You\'ve successfully logged in.'); $this->redirect('/statistics/display'); exit(); } else { $this-&g

Re: Problems with $this->Session->setFlash in layout

2007-05-13 Thread [EMAIL PROTECTED]
gt; wrote: > Hi everyone. As you can see by my handles name I am new to cakePHP so > please bear with me. OK I seem to be having problems with the > $this->Session->setFlash. I basically am following what was recommended in > > this link ->http://bakery.cakephp.org/articles

Problems with $this->Session->setFlash in layout

2007-04-25 Thread NewToCakePHP
Hi everyone. As you can see by my handles name I am new to cakePHP so please bear with me. OK I seem to be having problems with the $this- >Session->setFlash. I basically am following what was recommended in this link -> http://bakery.cakephp.org/articles/view/flashing-with-cakephp bu

Re: Session->setFlash() with layout fails

2007-03-25 Thread jyrgen
i have a similar problem, i want to have *all* system messages (incl. form validation errors) in views displayed in JS popups instead of html rendering. does anybody know a smart way to accomplish this ? thanks ! jyrgen --~--~-~--~~~---~--~~ You received this m

Re: Session->setFlash() with layout fails

2007-03-25 Thread Preloader
Nobody an idea? On 23 Mrz., 23:11, "Preloader" <[EMAIL PROTECTED]> wrote: > Ah of course: I'm using Cake 1.2.x.x_22.03.2007 > > :-) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this

Re: Session->setFlash() with layout fails

2007-03-23 Thread Preloader
Ah of course: I'm using Cake 1.2.x.x_22.03.2007 :-) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group,

Session->setFlash() with layout fails

2007-03-23 Thread Preloader
Hello Bakers, I have problems using Session::setFlash in the right way. Here is a very simplified version of my AppController. class AppController extends Controller { var $helpers = array('Html', 'Form'); var $components = array('Session'

Re: Problama com a função Session->setflash no I.E. Preciso de ajuda!!!

2007-02-19 Thread AD7six
On Feb 18, 6:55 pm, "Guga" <[EMAIL PROTECTED]> wrote: > Salve, salve galera!!! Eu estou começando a aprender como utilizar o > cake e estou com algumas dúvidas espero que vc´s possam me ajudar. > > Resumo: Estou com um probleminha. Quando eu utilizo a função

Re: Problama com a função Session->setflash no I.E. Preciso de ajuda!!!

2007-02-19 Thread mindcharger
You shouldn't post your questions in any other language than English. If you stick your posts to English everybody will be able to understand what you say and help you. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Grou

Re: Problama com a função Session->setflash no I.E. Preciso de ajuda!!!

2007-02-18 Thread Riky Kurniawan
a aprender como utilizar o > cake e estou com algumas dúvidas espero que vc´s possam me ajudar. > > Resumo: Estou com um probleminha. Quando eu utilizo a função $this- > >Session->setFlash("Mensagem"); especificamente no Internet Explorer > através da função beforeF

Problama com a função Session->setflash no I.E. Preciso de ajuda!!!

2007-02-18 Thread Guga
Salve, salve galera!!! Eu estou começando a aprender como utilizar o cake e estou com algumas dúvidas espero que vc´s possam me ajudar. Resumo: Estou com um probleminha. Quando eu utilizo a função $this- >Session->setFlash("Mensagem"); especificamente no Internet Explorer a

Re: Session->setFlash(), Layouts and helpers

2006-05-29 Thread nate
Congratulations, you found a bug in Cake. It's shocking, I know. But yes, it still does happen from time to time. Should be fixed in the next couple hours. If you think there might be a bug, you can report it at https://trac.cakephp.org, and it'll get fixed a little quicker. Thanks. --~--~-

Session->setFlash(), Layouts and helpers

2006-05-28 Thread SteveD
7;alternate CSS flash note' section). The problem I've found is that I can't use the HTML helper as part of the layout rendered with Session->setFlash(). It always barfs up the error: Fatal error: Call to a member function on a non-object in /app/views/layouts/inpageFlash.thtm