Skip to content
  • Popular is wrong and don't work!

    Bug Reports
    1
    +0
    0 Votes
    1 Posts
    50 Views
    D
    i'm using NodeBB v3.10.3. Popular work well when i start to use. In the one day, i don't know why Popular don't work although i try to click to topics for update topics views. Site don't show any data when i chose: day, week, month [image: 1733200643197-5161646d-203a-441a-b031-788314c75d08-image.png] When i chose: All time, site response data but it's not true by views. this is my congfig: { "url": "https://mywebsite", "secret": "{mykey}", "database": "mongo", "mongo": { "host": "{ip}", "port": "27017", "username": "nodebbv3", "password": "mypass", "database": "nodebbv3", "uri": "" }, "port": ["4567","4568","4569"], "bind_address": "0.0.0.0", "isCluster": "true", "redis": { "host": "127.0.0.1", "port": "6379", "password": "mypass", "database": "2" }, "upload_path":"/public/uploads", "session_store": { "name": "redis", "host":"127.0.0.1", "port":"6379", "password": "mypass", "database": "1", "tls": {} } }
  • Session problem with https

    Solved Technical Support
    5
    0 Votes
    5 Posts
    80 Views
    PawełP
    After a few tweaks, everything works. The config from docs didn't work properly and is probably a bit outdated, (tls version, spdy...). First: CloudFlare SSL: Flexible to Full Second: New nginx setup: server { listen 80; server_name forum.example.com; return 302 https://$host$request_uri; } server { listen 443 ssl http2; server_name forum.example.com; ssl_certificate /home/ubuntu/nodebb/ssl/forum.crt; ssl_certificate_key /home/ubuntu/nodebb/ssl/forum.key; ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; ssl_ciphers 'AES128+EECDH:AES128+EDH'; ssl_prefer_server_ciphers on; location / { 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; # no trailing slash proxy_redirect off; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } }
  • Quoted posts

    ActivityPub
    70
    6 Votes
    70 Posts
    999 Views
    Christian StangeC
    @[email protected] said in Quoted posts: One big benefit of this proposed quote post methodology is that it would be a version that Mastodon, et. al. would probably be willing to support. They have valid concerns that people will abuse quote posts to harass others. This proposal mitigates that. It also is useful in non-malicious contexts since people can fix typos and errors in their original post. It's also useful if the person being quoted wants to retract what they said, perhaps because they changed their mind on a topic or found new information. Well, and Mastodon et. al. are free to implement it that way. There is of cause the limitation of the technical solution on the Forum side regarding editing or deleting; but Mastodon is free to implement it as links. In the same way as a Forum solution has to implement it as qoutes, because the context is different. That means that if the forumpost actually becomes edited or deleted, Mastodon will delete it, because the link has disappeared, but if the Mastodon qoute disappears, the qoute stays in the forum, but the link back to source disappear so now it is just a statement witout a source.
  • To use mysql, update or migration?

    Unsolved Technical Support
    6
    0 Votes
    6 Posts
    92 Views
    N
    For anyone coming across this, It does not prompt or show what name to use. During install; Which database to use (mongo) postgres
  • changes not reflecting

    Unsolved Technical Support
    1
    0 Votes
    1 Posts
    31 Views
    p pbP
    Changes are not reflecting on the local URL after I make updates to the code. Even after completely deleting the views folder and modifying the category.json file, restarting NodeBB, and refreshing the URL, no changes are visible. and url is still opening
  • Nodebb bing indexnow

    Plugin Requests
    2
    +0
    0 Votes
    2 Posts
    54 Views
    Sylwester CybaN
    Such up and downs are normal for all search engines. But it still interesting to see. I think NodeBB team is able to find eventual issues. Thank you for mentioning Bing.
  • User accounts are mixed up and seem shared between users

    Bug Reports
    16
    0 Votes
    16 Posts
    608 Views
    <baris>B
    @nono-lqdn The error message is showing you which key is causing the violation, in this case it is analytics:pageviews:byCid:32 you need to delete that and try the createIndex command again until you no longer get errors and the index is created successfully. Do this when the forum is not running so you don't get more invalid keys. > db.objects.createIndex({ _key: 1, value: -1 }, { background: true, unique: true, sparse: true }); { "ok" : 0, "errmsg" : "E11000 duplicate key error collection: fotepo.objects index: _key_1_value_-1 dup key: { _key: \"analytics:pageviews:byCid:32\", value: \"1726783200000\" }", "code" : 11000, "codeName" : "DuplicateKey", "keyPattern" : { "_key" : 1, "value" : -1 }, "keyValue" : { "_key" : "analytics:pageviews:byCid:32", "value" : "1726783200000" } }
  • Documentation

    Moved ActivityPub
    6
    1 Votes
    6 Posts
    124 Views
    julianJ
    Hi @FrankM, I have a write-up on content discovery (including needing to follow people) here: https://docs.nodebb.org/activitypub/discovery/
  • Text Color

    Unsolved Technical Support
    8
    0 Votes
    8 Posts
    429 Views
    Sylwester CybaN
    Update is available as pull request and not as a release. Because of that plugin is missing from ACP.
  • 0 Votes
    13 Posts
    435 Views
    N
    @baris said in There is some questions when I use the nodebb-plugin-composer-quill: Do you have any error messages during build or in the browser console? What is the output of ./nodebb plugins? Sorry I am only replying now. I didn't get a notification that you had responded There are no error messages. The funny thing is that it works when I reactivate the default composer just with a few options not working such as uploads. [image: 1732950381974-screenshot-2024-11-30-090510.png] Here is the output of './nodebb plugins' [image: 1732950578130-screenshot-2024-11-30-090906.png]
  • IPinfo

    Feature Requests
    2
    0 Votes
    2 Posts
    334 Views
    Sylwester CybaN
    Sounds like a good addition to nodebb-plugin-spam-be-gone or a candidate for a new plugin.
  • NodeBB v4 Migration Guide

    General Discussion
    3
    0 Votes
    3 Posts
    633 Views
    Sylwester CybaN
    @julian said in NodeBB v4 Migration Guide: @nhl.pl What documentation we do have is actually already on our documentation portal: https://docs.nodebb.org/activitypub/ You're testing it with a lot of other software. Mentioning them somewhere on the end of the documentation may help. As it shows implementation is already tested and not in beta stage. For me your documentation for new set of features is clear. Nothing needs to be extended.
  • NodeBB v4.0.0 Beta

    ActivityPub
    20
    17 Votes
    20 Posts
    1k Views
    kainosK
    What about Design v4, is the same like 3.11.0? Is there Grid categories Options with images? Invision Community tests v5 Beta 6. Here some Forums https://www.fanclubs.org/ https://jimiwikman.se/ https://www.internazionale.fr/ https://krscanski.chat/
  • 0 Votes
    1 Posts
    73 Views
    Mr.CJ
    issues I wanted to implement DOM hook-like functionality for post pages, so I found this plugin called [nodebb-plugin-markdown-toc] But issues came up.... Since I don’t know how to write plugins and I’m not very familiar with the Harmony template, I can’t modify the front-end display of this plugin to look the way I want it to. Does anyone have any good ideas on how to modify it to make it look more appropriate? my css now /*********TOC*******/ .toc{background-color:var(--bs-container-background-color);border:1px solid #374646;box-shadow:2px 2px 3px rgba(0,0,0,0.1882352941);font-size:0.8rem !important;margin-bottom:1rem;border:1px solid rgba(0,0,0,0.125);border-radius:0.25rem;position:fixed;top:285px;left:-185px;margin-left:240px;min-width:120px;max-width:260px;padding-bottom:5px;display:inline-block;z-index:100;max-height:640px;overflow-x:hidden;overflow-y:overlay;transition:scrollbar-color 0.3s ease-out} .toc::before{content:"主题目录:";line-height:20px;text-decoration:none;text-indent:2em;margin-bottom:5px;padding:0px;font-size:12px;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125);border-bottom:1px solid rgba(0,0,0,0.06);display:block;height:20px} .toc a{color:var(--bs-body-color-bright,var(--base06,var(--bs-body-color)))} .toc a{background:none!important;text-decoration:none!important} .toc ul{padding:0px!important;margin-bottom:0px!important;} .toc ul ul{padding-left:0.8rem!important} .toc li{list-style-position:inside;display:block;overflow:hidden;padding-right:6px!important;list-style-type:disc!important} .toc li{border-bottom:1px solid rgba(0,0,0,0.06)} .toc li li{border:none!important} .tocli a{text-decoration:none!important;word-break:break-all;word-break:break-all;overflow:hidden} .toc::-webkit-scrollbar{width:8px} .toc::-webkit-scrollbar-track{background:gba(248,249,250,0.8);border-radius:100px} .toc::-webkit-scrollbar-thumb{background-image:linear-gradient(180deg,#D0368A 0%,#708AD4 99%);box-shadow:inset 2px 2px 5px 0 rgba(#fff,0.5);border-radius:100px} @media(max-width:600px){.toc{position:unset;margin:3px auto;width:100%;min-width:50%!important;max-width:98%!important;border:1px solid #ddd;font-size:12px!important;font-family:nb,"microsoft yahei light"!important;display:inline-block} } Preview [image: 1732814143016-snipaste_2024-11-29_01-15-32.png] [image: 1732814192898-snipaste_2024-11-29_01-16-21.png] My website Preview https://bbs.aiink.cn/topic/10 https://bbs.aiink.cn/post/37 https://bbs.aiink.cn/topic/3
  • RC1 of NodeBB v4

    ActivityPub
    12
    13 Votes
    12 Posts
    656 Views
    julianJ
    @[email protected] You can start a new thread by mentioning the category directly in a new topic. NodeBB sends Create(Note) from the author, and then five seconds later sends Announce(Create(Note)), Announce(Note), and Add(Note). Hubzilla may be misinterpreting the last three.
  • 0 Votes
    4 Posts
    116 Views
    Sylwester CybaN
    Strings available for translation so it looks like a requested feature was implemented.
  • What is the timeframe for 3.11 ?

    General Discussion
    7
    0 Votes
    7 Posts
    136 Views
    Sylwester CybaN
    @Christian-Stange Thank you for a reply. Very interesting for me and rest of NodeBB community. You may be interested to fork NodeBB In a Container. Podman is fully compatible with Docker and supports Kubernetes. For me no issues when using NodeBB in a container.
  • Emoji now federating out

    ActivityPub
    14
    12 Votes
    14 Posts
    602 Views
    Sylwester CybaN
    Please make them visible for topic listing. [image: 1732745247674-emoji.png]
  • 7 Votes
    8 Posts
    561 Views
    infinite love ⴳT
    @julian @silverpill also your Link.href is being escaped incorrectly
  • 3.11.0 Upgrade Support

    Technical Support
    1
    0 Votes
    1 Posts
    108 Views
    <baris>B
    If you have problems upgrading to 3.11.0 you can ask for help here.