Flash and Sessions

First of all, I'm using KohanaPHP Framework.I've impletemented SWFUpload successfully, working quite nice. I'm having only one issue.The main problem is I need to allow users to upload attachments before submitting form. So I decided to use Session var to store attachments array. Unfortunately, it is working inly if I use HTML upload (based on iframe), but not when I use SWFUpload.I tried to Google for that, but without any working solution. Any ideas?Update & Solution
Basically, I didn't know there's an issue with Flash and sessions. Providing the same session id didn't helped me because I got unlogged. Anyway I got a solution for people with the same issue.I created an unique ID of an item. I upload files to temporary directory, then... I'm scanning this directory and I'm adding uploaded filenames to session.Tom
 
Back
Top