hello,
I integrate SWFupload to my site which basic on Zend Framework, It ok in IE7, but something wrong with firefox. I used the applicationdemo, in firefox, it fine to upload the image files but can't creat the thumbnail, because the session which save the thumbnail image can't pass to the thumbnailAction . Here is the code.

uploadimgController.php
function uploadAction()
{
$params = $this->_request->getParams();
if (isset($params['sid'])) {
session_id($params['sid']);
}
$imgSession = new Zend_Session_Namespace('img');
......
move_uploaded_file($_FILES["Filedata"]["tmp_name"],$img_dir.$_FILES["Filedata"]["name"]); // it's successful.
......
$imgSession->file_info[$file_id] = $imagevariable;
......
}
function thumbnailAction()
{
$params = $this->_request->getParams();
if (isset($params['sid'])) {
session_id($params['sid']);
}
$imgSession = new Zend_Session_Namespace('img');
......
echo $imgSession->file_info[$image_id];
......
}
the img namespace is empty, the session is not effect. Maybe the session_id($params['sid']) can't call back the old session in zend framework...
How deal with the session ?