I just noticed this on my website as well. A few weeks ago NextGen Gallery totally broke NextGen Public Uploader. The current release of NextGen Gallery changed enough code to make NextGen Public Uploader to issue the above warning. The warning is coming from file: …wp-content\plugins\nextgen-gallery\products\photocrati_nextgen\modules\nextgen_data\package.module.nextgen_data.php. Line 656.
public function backup_image($image)
{
$retval = FALSE;
if ($image_path = $this->object->get_image_abspath($image)) {
$retval = copy($image_path, $this->object->get_backup_abspath($image));
// Store the dimensions of the image
if (function_exists('getimagesize')) {
$mapper = C_Image_Mapper::get_instance();
if (!is_object($image)) {
$image = $mapper->find($image);
}
if ($image) {
<strong>$dimensions = getimagesize($retval);</strong>
$image->meta_data['backup'] = array('filename' => basename($retval), 'width' => $dimensions[0], 'height' => $dimensions[1], 'generated' => microtime());
$mapper->save($image);
}
}
}
return $retval;
I used to really like photocrati. My suggestion to photocrati is to add an uploader feature people can put on their pages. Make it part of one of your for sale versions – I’d pay for it. Without it I need to look for an alternative gallery ??