Dear Bruno Motta and Metin ONAK,
I think that this issue is related to the !function_exists('exif_imagetype') in some modules.
* Guide: go to some module such as sj gallery pro, sj mega news, sj news extra slider, sj video box => finding:
if ( !function_exists('exif_imagetype') ){
$intype = exif_imagetype($path);
} else {
$infor = getimagesize($path);
$intype= @$infor[2];
}
change to
if (function_exists('exif_imagetype') ){
$intype = exif_imagetype($path);
} else {
$infor = getimagesize($path);
$intype= @$infor[2];
}
We will check and update this issue as soon as possible.
@Bruno Motta: I have fixed this bug on your site.
Please check your site again.
Thanks