• I have recently downloaded version 2.0.7 to my custmoize wordpress site and have issues trying to upload images to new galleries.

    I am going to new gallery and then creating a gallery name and selecting and uploading images, they process and state that 4 images have successfully uploaded, but when I go to my gallery it says 0 images??

    I am at a loss please can someone help!

    https://www.ads-software.com/plugins/nextgen-gallery/

Viewing 5 replies - 16 through 20 (of 20 total)
  • @benjibliss – you’d be more likely to get a reply if you start your own thread rather than posting in one that is two weeks old.

    https://codex.www.ads-software.com/Forum_Welcome#Where_To_Post

    Note that if you are using the Pro version, you need to use the developer’s contact info – these forums are for free versions of plugins/themes only.

    Here is what the tech support with NextGEN said:

    This issue is for the most part, resolved by resetting permalinks to ‘post name’ under Settings >> Permalinks in your WordPress dashboard. After you reset permalinks, clear your browser cache and reload your site. If that still does not work, it may be permissions related or an issue with PHP Safe Mode turned on on your server. In which case, contact your server host tech support and ensure:

    – 755 permissions applied to wp-content directory and all subdirectories
    – PHP Safe Mode turned OFF

    If that still does not resolve this issue for you, I’m wondering if you wouldn’t mind temporarily deactivating all plugins (including NextGEN) and then clear your browser cache and reactivate NextGEN Gallery only. Does that help? If not, would you also mind temporarily switching to a WP Default Theme like Twenty Thirteen and see if that helps? I know this is an inconvenience, we’re very sorry. But it would help us diagnose if this error may be a plugin/theme incompatibility.

    Hope that helps!

    I have a fresh install of wordpress 3.6 with a fresh install of the latest NextGen Gallery. I administer my own windows server and full permissions have been given to all wp-content folders and the Gallery folders. PHP is not running in safe mode – and I have no other plugins installed. My theme is the default theme. I have permalinks set to ‘post name’.

    Still getting the http error and no images upload. Any ideas?

    Hi

    I had the same problem with WP 3.9.1 and NextGen 2.0.66

    In my case there was a problem with access through the https as wp-admin works nowadays this way.

    So to check if you’ve got the same problem as me you can use FireBug or any similar tool to see what’s going on when you try to upload image.

    In my case there was 404 error for https://mydomain.com/photocrati_ajax When I’ve check common address https://mydomain.com/photocrati_ajax everything was fine – which is simple json response:

    {“error”:”Not a valid AJAX action”}

    Of course there is no such file like /photocrati_ajax this virtual name is overwritten to the index.php file in main folder.

    This rewrite module works only when it’s enabled and allowed to rewrite in the config – in my case it was not enabled for secure site.

    In my case (Ubuntu 12.04/apache 2.*) I had to edit the /etc/apache2/sites-available/default-ssl

    <Directory /var/www/mydomain/webfolder/>
           Options -Indexes FollowSymLinks MultiViews
           AllowOverride All
           Order allow,deny
           allow from all
    </Directory>

    where I’ve just changed the line AllowOverride None to All and restart the apache.

    I hope that will help someone.

    Plugin Contributor photocrati

    (@photocrati)

    @krzysiaczek – Thank you very much for sharing!

    – Cais.

Viewing 5 replies - 16 through 20 (of 20 total)
  • The topic ‘Images not uploading to galleris’ is closed to new replies.