I am trying to implement the Flash loader in my Zend framework application, but I am having problems with the session.
Flash does not send cookie headers, and therefore the session is lost. I'm trying to send sessionId as a post parameter, and in my boot file I added session_id ($ _ POST ['session_id]), but this doenst seems to work.
I use a MySQL table as a session repository
I tried to debug the error and, as far as I can see, session_id is set, and the repository returns the court data from the database, but it does not seem to be set correctly in the global $ _SESSION.
And even the stranger seems to be working on my Windows computer, but not on the intermediate Linux server.
flash upload session zend-framework
Gabriel solomon
source share