Alright, the problem is solved!
For those who encounter the similar problem and reading this to get
the problem solved, here's what I did.

My initial settings was that my cake session security is set to HIGH.

What appears to me is that everytime the user browse around, a new
Session ID is generated. The old Session ID is removed.
During the first Ajax call, a new Session ID is generated. However,
the second simultaneous Ajax call was carry the old ID. My system was
assigned with the new ID but my second Ajax call was carry the old
one. Therefore, PHP assumes that I have logged out of the system and
generates an entire new Session ID for me.
That's how I got logged out.
(I'm not sure if this is how the entire Session Process is, but as far
as I know, as of date, this is how it appears to me)

Solution?
Set the Cake Session Security to Medium.
This is what I did.

Afterwards, no new Session ID was generated everytime I fool around
with Ajax. Did up to even 20 Ajax calls simultaneously and
successfully. Just that my browser started to slow down a little. Yay!

I'm not sure if the Queue System works but anybody wants to give it a
try? Let me know!
By theory, I believe it should work.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to