teuniz Teuniz Multishop newbie Topic creator registered since: 22.10.2011 Posts: 4 | I get a fatal error when I add an image to a product. I think my webhosting account does not support exif, but as it's shared hosting I cannot change that. Is it possible to run Multishop without exif? |
Written on: 23. 10. 2011 [07:36] |
bas Bas van Beek Multishop guru registered since: 12.05.2010 Posts: 644 | I have added compatibility for this issue and will be added in our next release. function exif_imagetype ($filename)
{
if (function_exists('exif_imagetype'))
{
return exif_imagetype($filename);
}
elseif ((list($width,$height,$type,$attr) = getimagesize($filename)) !== false)
{
return $type;
}
return false;
} |
Written on: 23. 10. 2011 [10:43] |
teuniz Teuniz Multishop newbie Topic creator registered since: 22.10.2011 Posts: 4 | Wow, that's fast. When do you expect the new release online? |
Written on: 23. 10. 2011 [11:18] |