I upgraded yesterday as soon as I saw the update posted.
so far so good.
Best posts made by sweetp
-
RE: NodeBB v1.12.2 released!
-
RE: Who is using NodeBB?
Ive been running NodeBB for my support forum for a little over a year now, and are super happy with it:
support.sweetpproductions.comI also included css support for dark mode in my custom theme.
-
RE: NodeBB v1.15.0-rc.0 -- Release Candidate published
@julian nice one!
Iβve a actually been running one of the later betas in production for a week or so with no issues.
Looking forward to the final release.
-
RE: NodeBB v1.12.0 is released!
no problems on my forums as far as I can tell.
instant search is great, awesome work! -
RE: Redis or MongoDB?
@scottalanmiller my support forum has pretty low traffic, so itβs not really an issue
Actually the version of postgresql I had to install on my server doesnβt seem to be compatible with my install of Plesk either.
But it works well, and I donβt have to mess around learning how to support mongodb.
-
RE: Formatting is all jacked up when I login to your forum?
I had the same issue, and fixed it by changing the Skin in my user settings
-
RE: image upload issues
I managed to get the uploads working by adding the following to my
Apache & nginx Settings
on theAdditional nginx directives
in my Plesk Onyx panel: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; proxy_redirect off; # Socket.IO Support proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; }
-
RE: How to remove the icon before "thread being removed to other section"
thanks @PitaJ, Im ok with that, I'll probably never run the command again. In this particular case, I changed the structure of my forum and moved a large number of topics into different categories.
-
RE: image upload issues
I finally got the error fixed.
here's what happened, I am running a Plesk Onyx server, and installed the NodeJS update according to this guide:
And while everything looked good within Plesk, when I ran the command:
node -v
the old v8.9.1 of NodeJS would show as being current...
so all I did was this:
nvm use 10.15 npm install npm rebuild
now everything is finally running just fine again
-
RE: email notifications for post queue
@baris thanks,
there are so many configuration options, it takes time to find things
I found the option onSettings>User
if anyone else is looking for it
Latest posts made by sweetp
-
RE: NodeBB v1.15.0-rc.0 -- Release Candidate published
@julian nice one!
Iβve a actually been running one of the later betas in production for a week or so with no issues.
Looking forward to the final release.
-
RE: NodeBB v1.13.3 released!
fixed with the following patch:
https://github.com/NodeBB/NodeBB/commit/6a5e86dc667a42009bcac0c7061a21b6717cf9a9 -
RE: NodeBB v1.13.3 released!
I get an update error
4. Updating NodeBB data store schema... Parsing upgrade scripts... OK | 1 script(s) found, 83 skipped β [2020/5/2] Fix user sorted sets... [###### ] (500/1021) 48% (node:14753) UnhandledPromiseRejectionWarning: error: null value in column "score" violates not-null constraint at Connection.parseE (/var/www/vhosts/website.com/NodeBB/node_modules/pg/lib/connection.js:581:48) at Connection.parseMessage (/var/www/vhosts/website.com/NodeBB/node_modules/pg/lib/connection.js:380:19) at Socket.<anonymous> (/var/www/vhosts/website.com/NodeBB/node_modules/pg/lib/connection.js:116:22) at Socket.emit (events.js:198:13) at addChunk (_stream_readable.js:288:12) at readableAddChunk (_stream_readable.js:269:11) at Socket.Readable.push (_stream_readable.js:224:10) at TCP.onStreamRead [as onread] (internal/stream_base_commons.js:94:17) (node:14753) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1) (node:14753) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code
-
RE: Who is using NodeBB?
Ive been running NodeBB for my support forum for a little over a year now, and are super happy with it:
support.sweetpproductions.comI also included css support for dark mode in my custom theme.
-
RE: How to remove the icon before "thread being removed to other section"
thanks @PitaJ, Im ok with that, I'll probably never run the command again. In this particular case, I changed the structure of my forum and moved a large number of topics into different categories.
-
RE: How to remove the icon before "thread being removed to other section"
So, after searching through the source code, and comparing topics - I ended up altering my Postgres database instead, with the following query:
UPDATE legacy_hash SET data = data - 'oldCid';
I havn't seen any adverse affects... is there something which I need to be aware of?
-
RE: How to remove the icon before "thread being removed to other section"
does someone have a solution to this?
-
RE: NodeBB 1.13.0: a little snow won't slow us down
no problems for my Ubuntu 18.04/Postgres update either
-
RE: Formatting is all jacked up when I login to your forum?
I had the same issue, and fixed it by changing the Skin in my user settings
-
RE: NodeBB v1.12.2 released!
I upgraded yesterday as soon as I saw the update posted.
so far so good.