Hi,
I am using the ajax uploader and the Zend Framework.
The Problem is when I am using the json response for the onSubmit.
With $this->getHelper('Json')->sendJson($data);
I only get a saveas dialog.
The problem is that the uploader expects every responste to be "text/html" but the json helper sends "application/json" as mimetype.
With a usual response every thing works fine, but I need to send some information back to the script.
So how can I say Zend that it should send jsondata with the mimetype "text/html"?