Can anyone share the recipie for Recent Topics on community.nodebb.org please?

Solved Technical Support

Suggested Topics


  • Filtering recent

    Unsolved Technical Support
    0 Votes
    2 Posts
    56 Views

    You can use a hook like filter:topics.filterSortedTids and remove the topic ids you don't want from the tids array passed in.

  • 0 Votes
    16 Posts
    562 Views

    @pitaj This seems to be have been fixed with the most recent version of core. One small nuance is the lack of breadcrumbs being displayed on the page you select as default when using Persona. Is there any quick fix for this ?

    Thanks

  • 0 Votes
    3 Posts
    902 Views

    @baris said in Topics in ignored categories are shown in recent page:

    Maybe check this setting at /admin/settings/post 0_1519661867570_97621769-258e-462e-a985-ebaaed5d7672-image.png

    thank you, it works 🙂

  • NodeBB on IISNode

    Technical Support
    0 Votes
    2 Posts
    1k Views

    This topic might be helpful for you:

    Running NodeBB on IIS

    Hello everyone, I have some configuration questions for anyone who can give me some light on what to do, so I went ahead and setup a forum with NodeBB, every...

    favicon

    NodeBB Community (community.nodebb.org)

  • 0 Votes
    3 Posts
    5k Views

    @a_5mith

    Yes I have already checked it. I have found a docker image created by @nopz, this one is up-to-date. But the official docker image in not! Maybe you (nodebb) should give access to a dockerfile to allow anyone to build a nodebb docker image. EDIT I found the dockerfile, and the problem about this outdated version here. It's outdated because the dockerfile build the image with the v0.5.x version :

    FROM centos:centos7 MAINTAINER NodeBB Docker Team <[email protected]> # install main packages: RUN yum -y update ; yum clean all RUN yum -y install epel-release tar ; yum clean all RUN yum -y install wget ; yum clean all RUN yum -y groupinstall "Development Tools" RUN yum -y install nodejs git ImageMagick npm RUN yum -y install openssl openssl-devel # clone nodebb and install it RUN cd /opt ; git clone -b v0.5.x https://github.com/NodeBB/NodeBB nodebb RUN cd /opt/nodebb ; npm install # Create a nodebb volume VOLUME /opt/nodebb # Define a working directory WORKDIR /opt/nodebb # Expose ports EXPOSE 80 EXPOSE 443 EXPOSE 4567 CMD [ "node", "app.js" ]

    You should (NodeBB) update this dockerfile !

    End of the EDIT

    Now, with the nopz/nodebb image I just had a problem about plugin persistence. But the first installation is so much easier and automatic with just one docker.

    Thanks for your answer by the way 🙂