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

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