Salve a tutti,
ho un problema con questo plugin. l'ho abilitato per tutti gli articoli e nella maggior parte dei casi funziona bene. In alcuni articoli però mi da questa avvertenza:
Warning: getimagesize(/plugins/content/socialsharebuttons/assets/img/primi_sui_motori.png): failed to open stream: No such file or directory in /web/htdocs/www.godsfitness.org/home/plugins/content/plg_imagesized/plg_imagesized.php on line 196
sono andato a vedere nel php alla linea indicata e questo è ciò che trovo:
{
list($width) = getimagesize($img);
//
if($width < $this->options->width && $this->theview == 'article') return $img;
/*******Load class SimpleImage****************************************************/
if (!class_exists('SimpleImage'))
include_once(JPATH_SITE.DS.'plugins'.DS.'content'.DS.'plg_imagesized'.DS.'lib'.DS.'simpleimage.php');
/*********************************************************************************/
$image = new SimpleImage();
$image->load($imgx);
$image->sizeby($this->options->method, $this->options->width, $this->options->height, $this->options->mode, $this->options->bgcolor);
if($this->params->get( 'watermark', false )){
$options['text'] = $this->params->get( 'watermark' );
$options['fsize'] = $this->params->get( 'w_size',10);
$options['frotation'] = 0;
$options['color'] = $this->params->get( 'w_bgcolor');
$image->text2image($options);
}
qualcuno potrebbe aiutarmi?