pagination is broken

Technical Support

Suggested Topics


  • 1 Votes
    1 Posts
    188 Views

    Hello !

    On this forum (and also mine...), there is no pagination-block visible when we are on /recent or /popular for example.

    Is there a simple way to make it working on my forum ?

    Thanks in advance.

  • 0 Votes
    3 Posts
    1k Views

    I run into the same issue with nginx without any Cloudfare rules set for the forum and without any CDN active, so the webserver serves content directly.

    Fix:

    NodeBB
    config.json

    There should be no forward slash at the end which complies with the documentation:

    "url": "https://blabla.com/forum",

    nginx.conf

    here note the double slash on the first line /forum/

    The double slash solves the issue, at least during initial testing on different browsers and devices.
    Not sure if this is a Windows/nginx specific thing as the path's are set a bit different.

    [...] location /forum/ { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; # proxy_pass http://127.0.0.1:4567; proxy_pass http://io_nodes; proxy_redirect off; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; }
  • 1 Votes
    3 Posts
    764 Views

    Similar issue there is no Carousel Mode only four recent topics, any idea's how to fix it?

  • 1 Votes
    3 Posts
    1k Views

    @psychobunny I ended up starting from scratch and destroyed the database I was using and created a new one. Working on Heroku makes this very simple to do.

    Two things I can't seem to get working now are my recent cards plugin and email services.

    I also haven't managed to figure out how to upload cover images or profile photos. I get the "invalid mime type" alert.

  • Active users broken

    Technical Support
    3
    0 Votes
    3 Posts
    1k Views

    Thanks again, Baris. Testing now.