@julian I'll chime in here too and say the current setup of the thumbnail over on the side instead of replacing the avatar (like it did in persona) makes harmony unusable for our forum.
jminer
Posts
-
Turn off User Avatars in Topic Listings (ACP option) -
What's next after v3?@julian said in What's next after v3?:
Changes to topic thumbnails
Hell Yes! I'm excited about this - we love thumbnails but the functionality has always been a little limited!
Thanks for all the hard work team - I'm going to be putting 3.10 on my dev install this weekend.
-
Convert images on upload to webp?@denism7 I like this idea- you have it somewhere you can share?
-
Convert images on upload to webp?I run a fairly image heavy forum and would like to cut down on storage and bandwidth costs. Is there any way we can convert an image to webp during upload?
We run the imagemagick plugin now to let us upload gifs and it uploads and displays webp files fine. I'd like to be able to convert a .png or .jpg to a .webp.
We run fairly high compression in the settings today which helps with bandwidth but the full size file is still stored in uploads.
-
Why hosted NodeBB is so expensive?@macfan We host it ourselves, but our AWS bill is about what we'd pay to host it here for the entry level and our activity it between level 1 and 2 options. That also doesn't include the considerable amount of time I spend testing, maintaining and keeping things running.
Paid hosting isn't for everyone, but it's a lot of work to do it yourself.
-
1.19.3 Support Thread@baris The highlighted quote feature isn't working for us.
When you highlight a section and hit the quote popup it quotes the whole post like you hit the quote button at the bottom of it instead.
-
1.19.3 Support Thread@baris We've got an issue that on mobile a 99+ notifications will show on the hamburger menu on mobile even though notifications should be on the right side now. A refresh makes it go away, but it comes back.
Right now I'm just suppressing the notification with custom CSS.
/*Disable 99+ on mobile*/ .navbar-toggle#mobile-menu .unread-count::after { display: none; }
Also any way to change the default selection on the right swipe out? It would make more sense for it to go to notifications first instead of the user profile.
-
1.17.0 upgrade thumbnail issue@julian I just updated to 1.17.2 and still have this issue where any topics created before the 1.17.0 upgrade don't display thumbnails.
-
Enhancement to Scheduled Posts@pitaj If I add 'schedule topics' privilege to a user (or group) they now see every scheduled topic.
As the tool works today it's fine for admin or mod usage, but I'd like to open it up for my whole user base.
We have a lot of long-form blog and how-to type content on our forum and it'd be a great help to users to be able to manage them through scheduled posts like this instead of having to store drafts elsewhere (like word or such).
-
Enhancement to Scheduled PostsFirst off - thank you for implementing scheduled posts in 1.17.0!!!
To make it a bit more usable though it would be ideal of scheduled posts didn't appear at the top of the category greyed out as they do.
I'd love to open this feature to non-admins both for use as drafts for longer form posts and to allow scheduling but with a post hanging out for all to see at the top of the category it makes it not useful for that.
Maybe have a /scheduled section they get dumped into or only visible in /user/topics before going live.
Thanks and keep up the awesome work!
-
1.17.0 upgrade thumbnail issue@julian It doesn't show up in any of those views: category, recent or unread.
-
1.17.0 upgrade thumbnail issueI upgraded our Dev environment to 1.17.0 this morning and any topics that had a thumbnail before the upgrade no longer display one.
The environment was upgraded from 1.16.2 to 1.17.0 and when a topic is edited the thumbnail still displays in composer but it does not display on the topics list page.
If a new topic is created it does display the thumbnail as usual though.
Our forum use-case relies on thumbnails a good deal so this is definitely a problem for us.
Thanks!
-
Problem with invalid csrf token on registration/loginI am running a nodebb 1.15.0 system on Ubuntu 20 on nginx. It's a newer install and we've had an occasional issue on both registration and login where folks will get a message denying their login or registration.
2020-11-12T06:11:19.312Z [4567/17870] - [31merror[39m: /register
invalid csrf tokenor
2020-11-12T06:11:13.910Z [4567/17870] - [31merror[39m: /login
invalid csrf tokenFrequently a refresh on the browser will let a user login or sometimes just waiting a few minutes.
Here's my config.json
{
"url": "https://opposite-lock.com",
"secret": "secret",
"database": "mongo",
"port": "4567",
"mongo": {
"host": "127.0.0.1",
"port": "27017",
"username": "nodebb",
"password": "secret",
"database": "nodebb",
"uri": ""
}}
Nginx config
server {
server_name opposite-lock.com; client_max_body_size 100M; 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"; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/opposite-lock.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/opposite-lock.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($host = opposite-lock.com) {
return 301 https://$host$request_uri;
} # managed by Certbotlisten 80; server_name opposite-lock.com; return 404; # managed by Certbot
}
Any help would be very much appreciated!