@nodemode 1-st of all you need to create new subforum, that you will need. Than go to the each of 3 subforum and click button "Topic Tools" ==> "Move all" ==> and select subforum, that you create to move all topics from this subforum. It may take quite a long time if count of topics too large - dont worry.
dread
Posts
-
How to move all threads from one subforum to another? -
Custom Page TitleYiiii!)) Thanks a lot for the "Title of the home page" in admin panel!!
-
OneSignal Plugin@aokp how can you do this? nodebb-plugin-onesignal did't work or maybe i create wrong app on onesignal.com
-
Big size of nodebb.sessions in MongoDBEverything good. session was sucsessfully deleted after expired. and NodeBB has good resistant to attacks like ddos under 1.5 million requests by day!
-
Topic sorting without comment activitynodebb-plugin-category-sort-by-date
Sort category topics by date.. Latest version: 1.5.1, last published: 7 years ago. Start using nodebb-plugin-category-sort-by-date in your project by running `npm i nodebb-plugin-category-sort-by-date`. There are no other projects in the npm registry using nodebb-plugin-category-sort-by-date.
npm (www.npmjs.com)
-
Slow page loading on DigitalOcean@julian said in Slow page loading on DigitalOcean:
If you go to the
/api
routes... e.g.http://yoursite.tld/api/recent
, is the rest still slow?Definitely seems like some mongo indices are missing though it could really be anyone's guess at this point.
You can re-create the indices by running this in MongoDB after
use
-ing your NodeBB database:db.objects.createIndex({ _key: 1, score: -1 }, { background: true }); db.objects.createIndex({ _key: 1, value: -1 }, { background: true, unique: true, sparse: true }); db.objects.createIndex({ expireAt: 1 }, { expireAfterSeconds: 0, background: true });
Thanks a lot! Now it works like a car on f1!)
-
10 million pageviews last 30 days but only 20.000 posts@mj had same statistic sometime, but it was ddos - attack on my forum.
-
Mass delete of one user's messages by administrator.Hi, does it possible to delete selected messages posted by custom user? I saw - it possible to delete multiple post in selected topic, and in users profile there is no checkboxes for delete what I want - only view of user posts or topics. How can I do it softly - I don't want to delete user with content. I can do it only by DB query? thanks in advance!
-
It`s hard to take Select Where from nodebb using MongoDb@baris thank`s a lot! db.objects.find({_key: /^user:\d+/, fbid: {$exists:true}}) - perfect query for me!