Re: Question about Media Plugin of David Persson

2010-09-14 Thread marco.rizze...@gmail.com
Is here someone that uses this plugin? On 13 Set, 15:43, "marco.rizze...@gmail.com" wrote: > I try to resolve this error with this setting in core.php : > > Media_Info::config(array( >         'document' => array('Document'), >         'image' => array('ImageBasic'), >         'generic' => array(

Re: Question about Media Plugin of David Persson

2010-09-13 Thread marco.rizze...@gmail.com
I try to resolve this error with this setting in core.php : Media_Info::config(array( 'document' => array('Document'), 'image' => array('ImageBasic'), 'generic' => array('Generic') )); But I get this error: Fatal error: Media_Info_Generic::require_once() [function.require

Question about Media Plugin of David Persson

2010-08-30 Thread marco.rizze...@gmail.com
Hi I use MediaPlugin of David Persson. All works perfectly. I have only this question about the use of this plugin How can I set the plugin to use .zip file , .7zip file , .rar file For the moment I get always this error : Fatal error: Uncaught exception 'Exception' with message 'No adapters conf

Re: Question about Media Plugin of David Persson

2010-06-21 Thread marco.rizze...@gmail.com
Thank you very much Andrey I have another question. I have protected the Transfer Directory where i have uploaded images If I use the cakephp html helper to show these images in my pages I can't show anything With media helper is it possible to show these image in my pages or I must use another met

Re: Question about Media Plugin of David Persson

2010-06-19 Thread Andrey Mozharovsky
Hi Marco, You may probably use Medium helper and specify the file version there. For e.g. in your view you may try to do something like this: embed('s/transfer/img/' . $photo['basename']); ?> this snippet will render 's' version of image. > Hi > I use MediaPlugin of David Persson. > All works p

Question about Media Plugin of David Persson

2010-06-18 Thread marco.rizze...@gmail.com
Hi I use MediaPlugin of David Persson. All works perfectly. I have only this question about the use of this plugin I have the model Photo that is configurated like : var $actsAs = array( 'Media.Polymorphic' => array( 'classField' => 'model',