Hi davidharcombe,
If you would like to have me log into your site and see what going on, you can send me a temporary admin username and password to [email protected]
Alan
Same issue here. Any suggestions?
3rdCoast,
Since this was reported we have released version 3.1.6. I’m not sure if this helps since I have not seen this warning when I run Maxgalleria. Also check that you do not have WP_DEBUG set to true in your wp-config.php file. If you would like for me to look at what is going on at your site you can send me a temporary admin username and password to [email protected].
Alan
Hi, Alan.
I checked the versions we are currently using and are using WordPress 4.1.2 with Maxgalleria 3.1.6. We will send you login information. Thanks for helping us troubleshoot this.
3rdCoast,
We are seeing this issue in sites using gantry themes. Is that what your site is running?
Hi, Alan.
Yes. This site does use a Gantry theme. I see you have sent us an email as well and I’ll be responding to your questions about the theme.
Thanks for your help as we figure this out.
Here is a possible temporary fix. First, make a backup copy of maxgalleria-image-gallery.php in your plugins/maxgalleria folder. Then open maxgalleria-image-gallery.php in an editor and replace lines 636 & 637
$resized = $image_editor->resize($width, $height, $crop);
$new_image = $image_editor->save($resized_image_path);
with
$resized = NULL;
$new_image = array('width' => 0, 'height' => 0);
Thanks to Guy for reporting this.