I want to use the Plugin with CakePHP 2.1 as behaviour through $actAs = 'Uploader.Attachment'. While this works fine for static Uploads, I dont know how to use it for ajaxUploads.
The simple Question: Is there anyway to make an ajax-Upload happen through the actAs-Behaviour?
The explanation (if needed): The attachment Behaviour doesn't seem to have any defaults nor any other code regarding ajax (especially not the ajaxField in the following code). Though it works if I include the Plugin via
public function beforeFilter() {
$this->Uploader = new Uploader(array(
'ajaxField' => 'qqfile'
));
}
So I can use something like:
$data = $this->Uploader->upload($this->Uploader->ajaxField, array('overwrite' => true));
But not with:
$this->request->data;
This is not quite what I was seaching for, as I 1. Still need the actAs-Behaviour for other actions. 2. Have two different inclusions of the plugin, which I have to check that they do the same. 3. Can't automatically create thumbs and attach them to the same entry of the model.
