"First unread post" - not working with Safari/Nginx

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Archimedes
    Member
    • Dec 2003
    • 77
    • 3.8.x

    [Forum] "First unread post" - not working with Safari/Nginx

    Hi everybody!

    We are using vB 4.17 with vBSeo, Nginx and our users get problems when using safari.
    If they click on "First unread post" the link doesn't get transformed to the right anchor tag and the user only see the first post and not the first unread post.

    Anybody out there with the same problem? We are looking since weeks for a fix, but I can't find a solution.

    Thanks in advantage
    Archimedes
  • scottct1
    Senior Member
    • Jan 2003
    • 306
    • 4.2.X

    #2
    Don't know if you fixed your issue yet but I had the same issue on my site when I moved over to NGINX.

    And here is what fixed it for me.

    This is from my site conf file.

    Code:
       location ~ \.php$ {
                    fastcgi_pass 127.0.0.1:9000;
                    #fastcgi_pass unix:/var/run/php5-fpm.sock;
                    fastcgi_index index.php;
                    fastcgi_param SCRIPT_FILENAME $document_root/vbseo.php;
                    include /etc/nginx/fastcgi_params;
            }
            location / {
                    rewrite ^/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /vbseo.php?vbseourl=vbseo_sitemap/vbseo_getsitemap.php&sitemap=$1 last;
                    try_files $uri $uri/ /vbseo.php?$args;
            }
            location ~ /(.*\.php)$ {
                    rewrite ^/(.*)$ /vbseo.php last;
            }
            location /vbseo/(includes|resources/html|resources/xml)/ {
    #               allow      127.0.0.1;
    #               deny      all;
            }
    Yup I run a BIG Board.

    Comment

    Related Topics

    Collapse

    Working...