@HuseyinKurklu Sounds like your password is wrong, did you try resetting it.
You can always try cloning nodebb into a new folder with git clone https://github.com/NodeBB/NodeBB.git
@HuseyinKurklu Sounds like your password is wrong, did you try resetting it.
You can always try cloning nodebb into a new folder with git clone https://github.com/NodeBB/NodeBB.git
Looks good, try entering you github credentials and see if you can get the latest code.
I guess you would put your own gh credentials. What does this command show git remote -v
?
Maybe try
git fetch origin
git reset --hard origin/master
Not sure why it doesn’t trigger for fediverse posts. At the very least it should have turned into a blockquote. @julian will have to take a look at the fedi issue.
You can change the Spoiler
text to something else.
Now that it’s upgraded it should show up in the admin page.
Published 1.0.1 which is compatible with 4.x and 3.x
https://github.com/NodeBB-Community/nodebb-plugin-spoilers
I will update it for 4.x but it should still work if you install from the CLI
@anchorite thanks for reporting, it is fixed in 4.2.1
@anchorite can you try changing the email and logging out of nodebb before clicking the link in the email? I think there might be a bug in the flow if you are logged in and click on the confirmation link.
@bh4-tech Not really, it’s from our docs here https://docs.nodebb.org/configuring/proxies/nginx/#basic-with-ssl
Try adding proxy_set_header X-Forwarded-Proto $scheme;
after proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
Couple things to check.
@josef this is the part that should triggered the setup. We don’t use docker on manage.nodebb.org.
When ./nodebb setup is executed it enables all the default plugins. Including harmony theme and composer default.
Not sure where that happens in the docker file :think:
Ok so it looks like you are missing the templates from the theme, this can happen if you don’t have a theme activated. For example I don’t see the categories.tpl
file in your output. Make sure nodebb-theme-harmony
is activated before ./nodebb build
is run.
ERROR in ./build/public/src/modules/topicThumbs.js 104:6-106:8
Module not found: Error: Can't resolve 'composer' in '/usr/src/app/build/public/src/modules'
Looks like nodebb-plugin-composer-default is also not activated.
What about the template files inside /usr/src/app/build/public/templates
? The error message you are seeing is caused when expressjs can’t find the template file to render.
Did you check if the built files are in /usr/src/app/build
?
That’s interesting. Maybe you can debug here and see what it returns when running normally vs via pm2.