Has anyone ever used CakePHP Media Plugin in conjunction with SWFUpload or any flash/ajax uploaders? I can't find any documentation or code samples on this anywhere.
Any ideas/suggestions are most welcome.
Thanks,
m^e
|
|
|
I've managed to accomplish something along these lines using CakePHP 1.3, Uploadify (http://www.uploadify.com/) and Miles Johnson's Uploader plugin (http://www.milesj.me/resources/script/uploader-plugin). It took a bit of fiddling to get everything to work correctly and you'll want to read over the documentation for each of the pieces involved to get everything to work the way you need it to, but this is how I managed it: In your view:
Include the necessary Javascript libs: jQuery, SWFObject, and Uploadify.
Insert the In your controller: Include the Uploader plugin's Uploader component. Add something like this to the beforeFilter:
Create an action to do the uploads. Mine looks something like this:
That's the essence of it. There are a couple of gotchas, however. I pass the session ID to the controller and start a new session with that ID because Uploadify's post to the URL can be seen as coming from a different User Agent and this can cause errors. You can get around this by passing the browser's session ID to the upload action and starting a new session with that ID in the beforeFilter as shown above. Also, the Uploader component has built-in mimetype validation. However, the Flash uploader that Uploadify provides sends every file with some kind of "file-uploaded-by-flash" mimetype regardless of the mimetype of the original file. I got around this by disabling validation directly in the Uploader plugin's code. This means that if you want to validate the mimetypes of the uploaded files you'll have to add it in elsewhere. Sorry that this is so vague, but I did this a while ago and I don't remember all the details. However, I hope it helps point you in the right direction. |
||||
|
|
|
I found this tutorial and it works perfectly fine. |
|||
|
|