(Specific) IE8 loses session cookies

2010-11-22 Thread zpon
I am experiences a weird problem in a CakePHP application. It only seems to happen on specific version of IE8, and I have been unable to reproduce the problem myself, but the user has been helpful and reproduced it for me several times, so that I could collect some debugging information. The user

Question about session cookies

2010-02-22 Thread Peter M. Goldstein
. When I look at the staging environment, this set cookie header doesn't appear in the response. Note that the session cookie is served up on the initial request, so it's not some sort of global inability to write session cookies. Instead, the problem seems to occur only on updates. I've been

Re: these bloody cannot send session cookies are killing me!

2007-06-26 Thread AD7six
On Jun 26, 7:39 am, Dr. Tarique Sani [EMAIL PROTECTED] wrote: On 6/26/07, inVINCable [EMAIL PROTECTED] wrote: Does anybody have a fix? It seems simple enough, just a simply logout function, but those damn header warnings keep coming up. Any advice? I am reasonably sure that whitespace

Re: these bloody cannot send session cookies are killing me!

2007-06-26 Thread Gustavo Carreno
On 6/26/07, AD7six [EMAIL PROTECTED] wrote: On Jun 26, 7:39 am, Dr. Tarique Sani [EMAIL PROTECTED] wrote: On 6/26/07, inVINCable [EMAIL PROTECTED] wrote: Does anybody have a fix? It seems simple enough, just a simply logout function, but those damn header warnings keep coming

Re: these bloody cannot send session cookies are killing me!

2007-06-26 Thread John David Anderson
On Jun 25, 2007, at 8:19 PM, inVINCable wrote: Well, I fixed the original problem, but now after setting my logout function, the redirect will not work. I remember there is some way to fix this but I cannot seem to remember. The logout function looks like this. function logout() {

these bloody cannot send session cookies are killing me!

2007-06-25 Thread inVINCable
I have spent the last 3 hours trying to figure this out, and to no avail. Everything was fine and dandy until I add my login function in the users controller. unction login() { if(!empty($this-data)) { // see if there are any users in the

Re: these bloody cannot send session cookies are killing me!

2007-06-25 Thread John David Anderson
On Jun 25, 2007, at 7:58 PM, inVINCable wrote: I have spent the last 3 hours trying to figure this out, and to no avail. Everything was fine and dandy until I add my login function in the users controller. unction login() { if(!empty($this-data)) {

Re: these bloody cannot send session cookies are killing me!

2007-06-25 Thread inVINCable
Well, I fixed the original problem, but now after setting my logout function, the redirect will not work. I remember there is some way to fix this but I cannot seem to remember. The logout function looks like this. function logout() { $this-Session-delete('User');

Re: these bloody cannot send session cookies are killing me!

2007-06-25 Thread inVINCable
Does anybody have a fix? It seems simple enough, just a simply logout function, but those damn header warnings keep coming up. Any advice? Thanks. On Jun 25, 7:19 pm, inVINCable [EMAIL PROTECTED] wrote: Well, I fixed the original problem, but now after setting my logout function, the redirect

Re: these bloody cannot send session cookies are killing me!

2007-06-25 Thread Dr. Tarique Sani
On 6/26/07, inVINCable [EMAIL PROTECTED] wrote: Does anybody have a fix? It seems simple enough, just a simply logout function, but those damn header warnings keep coming up. Any advice? I am reasonably sure that whitespace after the closing ? somewhere is the problem... You have two

Re: Session cookies

2006-11-07 Thread Gonçalo Marrafa
I'm using Linux, so i guess our problems aren't OS related. On Mon, 06 Nov 2006 21:43:35 - [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: What operating system are you using? I use OS 10.4 and have recently downloaded a software update for it which has cancelled my computer's ability to

Re: Session cookies

2006-11-07 Thread Gonçalo Marrafa
I'm using PHP's native session management. I'll try Cake's and see if the problems persists. Either way i don't think it is a permissions problem. The session data files are there. The problem is that Cake creates a different session/cookie for each plugin! Thanks for your help. On Mon, 6 Nov

Re: Session cookies

2006-11-07 Thread AD7six
Hi Gonçalo, Did you try this: http://groups.google.com/group/cake-php/search?group=cake-phpq=session+plugin If there is always a new session for each plugin there is a solution on my site (see the results above), although I found that with an upgrade the 'problem' went away. If it is, as you

Re: Session cookies

2006-11-07 Thread Gonçalo Marrafa
Thanks Andy, you rock! I was looking through the comments on your solution (http://noswad.me.uk/MiBlog/SessionsAndPlugins) and truster presents an alternate solution. Truster suggests setting CakeSession-path='/' and ini_set('session.cookie_path', '/') in beforeFilter(). Correct me if i'm wrong

Session cookies

2006-11-06 Thread Gonçalo Marrafa
Hi, All. I'm having a problem with sessions, due to the cookies Cake uses to store the session id. My app uses a lot of plugins, each one of them setting a cookie with their own path. The problem is that i'm storing the logged user's credentials in the main session and sometimes (only

Re: Session cookies

2006-11-06 Thread [EMAIL PROTECTED]
What operating system are you using? I use OS 10.4 and have recently downloaded a software update for it which has cancelled my computer's ability to carry session data from one page to the next. Let me know if this maybe the problem. Benz Gonçalo Marrafa wrote: Hi, All. I'm having a problem

Re: Re: Session cookies

2006-11-06 Thread Samuel DeVore
we had a similar problem on a server update recently and it turned out that the tmp folder was no longer writable. Once the permissions issue was corrected the problem was resolved. You might check the permissions at /tmp and /var/tmp and see if they have changed. You can also try changing