Re: session problems with cake 1.18 and CAKE_SECURITY=high?

2008-01-08 Thread Martin Schapendonk
On 1/7/08, beetlejuice [EMAIL PROTECTED] wrote: the data i wrote into the session when user successfully logged in are no longer available in the next page. do you have an idea ? CAKE_SECURITY set to high also means that Cake checks the referer and drops the session if it believes it is

Re: session problems with cake 1.18 and CAKE_SECURITY=high?

2008-01-08 Thread Davide
Martin Schapendonk wrote: CAKE_SECURITY set to high also means that Cake checks the referer and drops the session if it believes it is being tampered with. I have the same problem but from 1.1.18 to 1.1.19. In 1.1.18 everything works out well, in 1.1.19 not. In the authentication procedure I

Re: session problems with cake 1.18 and CAKE_SECURITY=high?

2008-01-08 Thread Martin Schapendonk
On 1/8/08, Davide [EMAIL PROTECTED] wrote: I've also tried with security HIGH, MEDIUM and LOW but none of them works. When I get back to 1.1.18 everything is ok. This may be trivial, but the setting is case sensitive. Did you try high, medium and low as well? Martin -- Martin Schapendonk,

Re: session problems with cake 1.18 and CAKE_SECURITY=high?

2008-01-08 Thread Davide
Martin Schapendonk wrote: On 1/8/08, Davide wrote: I've also tried with security HIGH, MEDIUM and LOW but none of them works. When I get back to 1.1.18 everything is ok. This may be trivial, but the setting is case sensitive. Did you try high, medium and low as well? Yes, I did. I just

Re: session problems with cake 1.18 and CAKE_SECURITY=high?

2008-01-07 Thread beetlejuice
Hello, did you resolve your session issues ? i saw your bug report was set to invalid, but with no explaination. i'm just following a basic tuto with login and session (Cook up Web sitesfast withCakePHP part3) and i'm stuck. the data i wrote into the session when user successfully logged in

Re: session problems with cake 1.18 and CAKE_SECURITY=high?

2007-12-05 Thread robechar
I've had the same problem, and I think the problem was in the fix for ticket #3133. Session IDs are regenerated with every page request, however it isn't carrying over the data with that new session id. Therefore all session information is being lost with each page request. I've added a ticket

session problems with cake 1.18 and CAKE_SECURITY=high?

2007-11-21 Thread keymaster
Anyone experiencing any problems with session vars in cake 1.18? I have an app which has been working solidly for almost a year, since 1.11, through all the cake releases until 1.17. When I upgraded to 1.18, all of a sudden on some of my ajax requests, the call to $this-Session-check('myVar')

Re: session problems with cake 1.18 and CAKE_SECURITY=high?

2007-11-21 Thread keymaster
Saw this note from phpnut in bug #3507 on trac: = Added id() to Session helper and component to return current Session id, the component accepts a $id parameter to force setting the Session id which must be called in a Controller::beforeFilter(). Sessions id are not longer renewed