Bug / Issue Report Template
-
I was submitting a bug report on Github, and thought it would be nice if there has a sticky topic on here with a template for submitting bug reports.
Something like this (keep it basic):
Attn: Before Submitting A Bug Report please confirm/try the following, if possible. Please note, after each step try starting in dev mode
./nodebb dev
and take note of any errors or warnings written to the console.-
Disable theme
./nodebb reset theme
-
Disable all plugins
./nodebb reset plugins
a. If you want to disable one at a time use this instead:./nodebb reset plugin="nodebb-plugin-PLUGIN_NAME_HERE"
-
Confirm all necessary services for your instance are running and available:
a. Database
b. Apache/Nginx (If you use them)
c. Make sure your port is open and accessible -
If you've updated to a newer version of nodebb make sure you did the following:
a.npm install
b../nodebb upgrade
If the above didn't work please use the template below to submit a bug report
- NodeBB Version
- Current Active Plugins (If any)
- Current Active Theme
- Bug Severity: 1 (lowest) - 5 (highest)
- Bug Description
- How to duplicate?
These are just some thoughts...would need to be more precise and formatted with some markdown. Just wanted to throw the idea out there...
-
-
This already exists on Github. However yes, a template for people to fill out a bug report would be smooth.
Although, bug severity wouldn't really work. If someones forum goes down because they've downloaded a plugin that's not compatible, then they'd say that was a severity of 5. I on the other hand, would give it a severity of 0.3.
File not found 路 NodeBB/NodeBB
Node.js based forum software built for the modern web - File not found 路 NodeBB/NodeBB
GitHub (github.com)
-
Yes, I highly recommend updating
CONTRIBUTING.md
with a list (either embedded inline or linking to an article in the documentation/wiki) of steps to try before submitting a bug report.Good thing that file is in the repo and we accept pull requests XD
-
If we had a forms-to-post plugin this would be real easy :squirrel:
-
@Tanner That sounds far too simple. Seems doable though. Could probably use the blog comments plugin to find out how to create the topic, you'd just need to create an admin area with the questions, and the routes.
I've probably wildly over simplified that though.
-
@a_5mith That's what I'm saying man, I requested this plugin a while ago here:
It's a simple thing that I unfortunately haven't figured out myself, and would definitely appreciate a few +1's for it.
-
I like where this is going...
-
@Tanner write API could help with that, but until then, here's the high-level implementation/workaround:
- FTPP (form-to-post plugin) establishes new
POST
route at/feedback
- When that route is called, take
req.body.text
(wheretext
is theid
in the corresponding form) and callTopic.post
as a pre-registered user.
That's pretty much it. There's more to expand on (such as spam prevention/throttling/auth/security), but yeah.
- FTPP (form-to-post plugin) establishes new