Re: After logout browser back button shows all visited page

2015-05-16 Thread Rashid Khan
Thanks. Its Working fine. 

On Wednesday, June 6, 2012 at 9:55:21 AM UTC+5:30, Chetan Patel wrote:
>
> Hello Sunil
>
> I use it in AppController:
>
> public function beforeRender() {
> $this->response->disableCache();
>
> }
>
> Thanks
> Chetan Patel
>
>

-- 
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 this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php.
For more options, visit https://groups.google.com/d/optout.


Re: After logout browser back button shows all visited page

2013-06-07 Thread Nikunj Amipara
hi all
 i am having same problem. disabling cache works but i don't wont that  is 
there a way to disable (clear ) it when logging out 
thanks 

On Wednesday, 6 June 2012 09:55:21 UTC+5:30, Chetan Patel wrote:
>
> Hello Sunil
>
> I use it in AppController:
>
> public function beforeRender() {
> $this->response->disableCache();
>
> }
>
> Thanks
> Chetan Patel
>
>

-- 
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 this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: After logout browser back button shows all visited page

2012-06-05 Thread Chetan Patel


Hello Sunil

I use it in AppController:

public function beforeRender() {
$this->response->disableCache();
   
}

Thanks
Chetan Patel

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: After logout browser back button shows all visited page

2012-06-05 Thread Chetan Patel


Hello Sunil

I use it in AppController:

public function beforeRender() {
$this->response->disableCache();
   
}

Thanks
Chetan Patel



On Friday, 8 May 2009 18:04:27 UTC+5:30, sunil.rajput wrote:
>
> Dear Frinds, 
>
>I am developing a project using cakephp and i have 
> a problem with that, after logout when i am click on browser back 
> button it shows every page without checking the session . i want that 
> after logout no page display from browser history it should be first 
> check the session for login. 
>
> please help me. 
>
> thanks 
>
> Sunil.Rajput 
>

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php


Re: After logout browser back button shows all visited page

2009-05-09 Thread dr. Hannibal Lecter

Why not call $this->disableCache() in your controller and let cake
take care of that?

http://api.cakephp.org/class/controller#method-ControllerdisableCache

On May 9, 4:36 pm, brian  wrote:
> Yes, they handle things differently, of course. I'm not sure of the
> correct procedure. Have a look here:
>
> http://blog.httpwatch.com/2008/10/15/two-important-differences-betwee...
>
> On Sat, May 9, 2009 at 2:08 AM, sunil.rajput  wrote:
>
> > Dear brian,
>
> >                 Thanks for response and solution regarding the cache,
> > The problem has been solved in IE browser but in mozila the problem is
> > still same.
>
> >             So please what about for mozila.
>
> > Thanks,
>
> > On May 8, 10:13 am, brian  wrote:
> >> Have a look at Controller::disableCache() or manually set these
> >> headers in AppController::beeeforeRender():
>
> >> header('pragma: no-cache');
> >> header('Cache-Control: no-cache, must-revalidate');
> >> header('Expires: Sat, 1 Jan 2005 00:00:00 GMT');
>
> >> You can also put these in META tags in your layout but those aren't as
> >> effective as proper headers.
>
> >> On Fri, May 8, 2009 at 8:34 AM, sunil.rajput  
> >> wrote:
>
> >> > Dear Frinds,
>
> >> >                   I am developing a project using cakephp and i have
> >> > a problem with that, after logout when i am click onbrowserback
> >> >buttonit shows every page without checking the session . i want that
> >> > after logout no page display frombrowserhistory it should be first
> >> > check the session for login.
>
> >> > please help me.
>
> >> > thanks
>
> >> > Sunil.Rajput
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: After logout browser back button shows all visited page

2009-05-09 Thread brian

Yes, they handle things differently, of course. I'm not sure of the
correct procedure. Have a look here:

http://blog.httpwatch.com/2008/10/15/two-important-differences-between-firefox-and-ie-caching/

On Sat, May 9, 2009 at 2:08 AM, sunil.rajput  wrote:
>
> Dear brian,
>
>                 Thanks for response and solution regarding the cache,
> The problem has been solved in IE browser but in mozila the problem is
> still same.
>
>             So please what about for mozila.
>
> Thanks,
>
> On May 8, 10:13 am, brian  wrote:
>> Have a look at Controller::disableCache() or manually set these
>> headers in AppController::beeeforeRender():
>>
>> header('pragma: no-cache');
>> header('Cache-Control: no-cache, must-revalidate');
>> header('Expires: Sat, 1 Jan 2005 00:00:00 GMT');
>>
>> You can also put these in META tags in your layout but those aren't as
>> effective as proper headers.
>>
>> On Fri, May 8, 2009 at 8:34 AM, sunil.rajput  
>> wrote:
>>
>> > Dear Frinds,
>>
>> >                   I am developing a project using cakephp and i have
>> > a problem with that, after logout when i am click onbrowserback
>> >buttonit shows every page without checking the session . i want that
>> > after logout no page display frombrowserhistory it should be first
>> > check the session for login.
>>
>> > please help me.
>>
>> > thanks
>>
>> > Sunil.Rajput
> >
>

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: After logout browser back button shows all visited page

2009-05-08 Thread sunil.rajput

Dear brian,

 Thanks for response and solution regarding the cache,
The problem has been solved in IE browser but in mozila the problem is
still same.

 So please what about for mozila.

Thanks,

On May 8, 10:13 am, brian  wrote:
> Have a look at Controller::disableCache() or manually set these
> headers in AppController::beeeforeRender():
>
> header('pragma: no-cache');
> header('Cache-Control: no-cache, must-revalidate');
> header('Expires: Sat, 1 Jan 2005 00:00:00 GMT');
>
> You can also put these in META tags in your layout but those aren't as
> effective as proper headers.
>
> On Fri, May 8, 2009 at 8:34 AM, sunil.rajput  wrote:
>
> > Dear Frinds,
>
> >                   I am developing a project using cakephp and i have
> > a problem with that, after logout when i am click onbrowserback
> >buttonit shows every page without checking the session . i want that
> > after logout no page display frombrowserhistory it should be first
> > check the session for login.
>
> > please help me.
>
> > thanks
>
> > Sunil.Rajput
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: After logout browser back button shows all visited page

2009-05-08 Thread brian

On Fri, May 8, 2009 at 12:33 PM, Brendon Kozlowski
 wrote:
>
> teknoid actually just posted an article about this today:
> http://teknoid.wordpress.com/2009/05/07/dont-cache-my-form-and-session-data/

I love that site. I recommend it often.

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: After logout browser back button shows all visited page

2009-05-08 Thread Brendon Kozlowski

teknoid actually just posted an article about this today:
http://teknoid.wordpress.com/2009/05/07/dont-cache-my-form-and-session-data/

On May 8, 10:13 am, brian  wrote:
> Have a look at Controller::disableCache() or manually set these
> headers in AppController::beeeforeRender():
>
> header('pragma: no-cache');
> header('Cache-Control: no-cache, must-revalidate');
> header('Expires: Sat, 1 Jan 2005 00:00:00 GMT');
>
> You can also put these in META tags in your layout but those aren't as
> effective as proper headers.
>
>
>
> On Fri, May 8, 2009 at 8:34 AM, sunil.rajput  wrote:
>
> > Dear Frinds,
>
> >                   I am developing a project using cakephp and i have
> > a problem with that, after logout when i am click on browser back
> > button it shows every page without checking the session . i want that
> > after logout no page display from browser history it should be first
> > check the session for login.
>
> > please help me.
>
> > thanks
>
> > Sunil.Rajput- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: After logout browser back button shows all visited page

2009-05-08 Thread brian

Have a look at Controller::disableCache() or manually set these
headers in AppController::beeeforeRender():

header('pragma: no-cache');
header('Cache-Control: no-cache, must-revalidate');
header('Expires: Sat, 1 Jan 2005 00:00:00 GMT');

You can also put these in META tags in your layout but those aren't as
effective as proper headers.

On Fri, May 8, 2009 at 8:34 AM, sunil.rajput  wrote:
>
> Dear Frinds,
>
>                   I am developing a project using cakephp and i have
> a problem with that, after logout when i am click on browser back
> button it shows every page without checking the session . i want that
> after logout no page display from browser history it should be first
> check the session for login.
>
> please help me.
>
> thanks
>
> Sunil.Rajput
>
> >
>

--~--~-~--~~~---~--~~
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 unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---