Support » Plugin: WordPress Gallery Plugin - NextGEN Gallery » NextGEN Gallery slideshows with nginx

Viewing 1 replies (of 1 total)
  • Hi, can i ask you if your problem was that the slide doesn’t work and show always the same page of the article where you put the gallery? This is an example of my gallery:

    Link

    If you try to access it redirect to the article; the next and prev button doesn’t work.

    My permalink setting is: /%category%/%postname%.html
    My configuration nginx for the site is:

    server {
        listen *:80;
    
        server_name www.ntacalabria.it ntacalabria.it;
    
        access_log /var/log/nginx/wordpress.access.log;
        error_log /var/log/nginx/wordpress.error.log;
    
        root /home/ftp/wordpress;
        index index.html index.htm index.php;
    include /etc/nginx.wp/restrictions.conf;
    include /etc/nginx.wp/wordpress.conf;
    rewrite ^/sitemap_index\.xml$ /index.php?sitemap=1 last;
    rewrite ^/([^/]+?)-sitemap([0-9]+)?\.xml$ /index.php?sitemap=$1&sitemap_n=$2 last;
    rewrite ^/sitemap(-+([a-zA-Z0-9_-]+))?\.xml$ "/index.php?xml_sitemap=params=$2" last;
    rewrite ^/sitemap(-+([a-zA-Z0-9_-]+))?\.xml\.gz$ "/index.php?xml_sitemap=params=$2;zip=true" last;
    rewrite ^/sitemap(-+([a-zA-Z0-9_-]+))?\.html$ "/index.php?xml_sitemap=params=$2;html=true" last;
    rewrite ^/sitemap(-+([a-zA-Z0-9_-]+))?\.html.gz$ "/index.php?xml_sitemap=params=$2;html=true;zip=true" last;
    try_files $uri $uri/ /index.php?q=$uri&$args;
    try_files $uri $uri/ /index.php?$is_args$args /index.php?q=$uri&$args;
    ...
    }

    Let me know if you have any suggestion

    Thank you

Viewing 1 replies (of 1 total)
  • The topic ‘NextGEN Gallery slideshows with nginx’ is closed to new replies.