I've had a similar issue with Rad Upload (an upload applet), and I
didn't find any other solution than disabling the user agent check. So
in /cake/libs/session.php I changed:

if ($this->_userAgent == $this->read("Config.userAgent") && $this-
>time <= $this->read("Config.time"))

to

if ($this->time <= $this->read("Config.time"))

I passed the session id to the applet upload handler like this:

UPLOAD_HANDLER_URL . '?' . CAKE_SESSION_COOKIE . '=' . session_id()

See also
http://groups.google.com/group/cake-php/browse_thread/thread/6aaca56835c38688/13aec1bd4e3b934e?lnk=gst&q=amf+session&rnum=1#13aec1bd4e3b934e

I know it's not a clean solution, so if anyone has any suggestions ...


--~--~---------~--~----~------------~-------~--~----~
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