Skip to content

Test of youtube embeds

Solved Configure

Did this solution help you?
Did you find the suggested solution useful? Why not buy me a coffee? It's a nice gesture, and a great way to show your appreciation 💗

Related Topics
  • Pulling YouTube videos using RSS

    Configure
    5
    6 Votes
    5 Posts
    106 Views

    The perfect solution and walkthrough Mark, appreciated as always!

  • Block Domain

    Solved Let's Build It
    26
    1 Votes
    26 Posts
    2k Views

    Yes ogproxy too is functionnal on dev

  • www. Infront stops website access?

    Solved Configure
    10
    1 Votes
    10 Posts
    443 Views

    @Panda because there is no match for the DNS entry specified. The receiving web server parses the headers looking for a destination hostname to match, and anything the web server is unable to resolve will be sent back to the root.

  • Bug in Nodebb route when clicking title

    Moved Configure
    3
    2 Votes
    3 Posts
    216 Views

    Ah silly me, thanks for finding that!

  • Composer options on nodebb

    Solved Configure
    8
    3 Votes
    8 Posts
    388 Views

    @Panda You should be able to expose the CSS for these using F12 to get into console

    3591518c-e3a3-4ada-a43c-6b32a5e0359c-image.png

    a2b8ed46-4157-4ff2-85f0-576543380107-image.png

    That should then expose the element once selected

    89d9c545-a47a-40d1-98f4-80cf3b958e8f-image.png

    Here’s the below CSS you need based on the screenshot provided.

    .composer .formatting-bar .formatting-group li[data-format="picture-o"], .composer .formatting-bar .formatting-group li[data-format="spoiler"] { display: none; }
  • adding some console.log to Nodebb

    Solved Customisation
    4
    1 Votes
    4 Posts
    548 Views

    @eeeee if you’re using the console, you could try

    node app.js > app.log 2>&1

    This would redirect stdout to a file named app.log and redirect stderr to stdout.

    I’m not sure about standard logging under NodeBB, but there is an error log located at logs/error.log.

    Failing that, you could always stop the NodeBB service then use ./nodebb dev from the console which would then provide debug output.

  • restarting nodebb on boot

    Unsolved Configure
    3
    1 Votes
    3 Posts
    287 Views

    @eeeee said in restarting nodebb on boot:

    can I just run nodebb under nodemon for auto restarts?

    It’s a better method. Nodemon just looks for file system changes and would effectively die if the server was rebooted meaning you’d have to start it again anyway. Systemd is the defacto standard which is how the operating system interacts in terms of services, scheduled tasks etc.

  • Dark Theme Upper Padding

    Solved Customisation
    7
    6 Votes
    7 Posts
    500 Views

    @DownPW great! thanks a lot… this code solves my problem.