removeOriginal Dont work on MeioUpload !
i have this code in my post model :
/model/post.php
public $actsAs = array(
'MeioUpload.MeioUpload' => array(
'avatar' =>array(
'thumbnails' => true ,
'thumbsizes' => array('small' => array('width'=>100, 'height'=>100)),
'thumbnailQuality' => 75,
'thumbnailDir' => 'thumb',
'removeOriginal' => true
)
)
);
i want to upload thumbs only , I do not need the source picture .
(cakephp 2.1.2)
thanks