Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor photocrati

    (@photocrati)

    @randyscott777 – Are you referring to the NextGEN Public Upload plugin? That is written and maintained by another author, have you asked them about this issue?

    – Cais.

    CCC

    (@chanecullens)

    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 ??

    Plugin Contributor photocrati

    (@photocrati)

    @chanecullens – You are more than welcome to share your thoughts and ideas on any Feature request here: https://nextgen-gallery.com/feature-voting/

    As to issues from a few weeks ago with the NextGEN Public Uploader, we re-introduced the NextGEN Legacy functions it was relying on but if there are additional problems then it would be best to make sure its author is aware of them … or feel free to start a new topic here.

    Thanks!

    – Cais.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Warning with Public Uploader’ is closed to new replies.