• Recently I had a fatal error message, which appeared to be solved when my hosting company increased memory limits in the php.ini file. After that was done, I uninstalled, then reinstalled the nextGEN plugin.

    Now, a week or so later, I’m trying to load a new image into an existing gallery and I get the message “0 picture(s) successfully added”

    Not sure if this is related, but when I try adding images to a post using WP’s upload image tool (not the nextGEN plugin) I get an error message and images won’t upload.

    Any help is much appreciated.

    https://www.mixedmediapromo.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • your upload folder is writeable? (chmod 777)

    On my website I had to add the following to .htaccess (top for regular image uploads, and bottom for ngg)

    #BEGIN Image Upload HTTP Error Fix
    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>
    <IfModule security_module>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>
    <IfModule security2_module>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>
    #END Image Upload HTTP Error Fix
    
    #BEGIN NextGen Gallery Image Upload HTTP Error Fix
    <IfModule mod_security.c>
    <Files upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>
    <IfModule security_module>
    <Files upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>
    <IfModule security2_module>
    <Files upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>
    #END NextGen Gallery Image Upload HTTP Error Fix

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: NextGEN Gallery] 0 picture(s) successfully added’ is closed to new replies.