Good point. No their ip is not currently whitelisted. I will give that a shot and see if it helps them, but that’s probably not a great long-term solution since their ip is not likely to persist. Thanks!
BTW – I’m using v1.12 of the mic plugin and WP 4.3
Getting a similar warning – maybe the same? Complains about undefined index “size” on line 39 of ManualImageCropEditorWindow.php. Currently, that line is assuming that $_GET[‘size’] is set, but at least in my case it’s not (clicked on “crop image” link in “set featured image” meta box.
Changing that line to:
$editedSize = (isset($_GET[‘size’]) && in_array($_GET[‘size’], $imageSizes)) ? $_GET[‘size’] : null;
seems to fix the issue though.