Forum Replies Created

Viewing 1 replies (of 1 total)
  • 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.

Viewing 1 replies (of 1 total)