@arnaudw I upgraded my twemoji fork earlier today, so that should work now if you install it again
phit
Posts
-
Upgrade to 2.x from 1.9.8 -
2.0 Compatible PluginsI got a couple that we will definitely need on 2.0, really mostly all by @yariplus
https://github.com/yariplus/nodebb-plugin-featured-topics-extended
GitHub - yariplus/nodebb-plugin-newsletter: Send an email newsletter to all users or a group of users.
Send an email newsletter to all users or a group of users. - yariplus/nodebb-plugin-newsletter
GitHub (github.com)
-
The future of Nodebbagree on the plugin front, i know progress is needed and sometimes breakage can't be avoided, but breaking plugins multiple times a year is a good way to never develop a healthy plugin ecosystem
-
New Mobile Menus (again) and New Emoji Pluginalready cleared cache, also it seems to mess up links https://google.com
-
New Mobile Menus (again) and New Emoji PluginEmoji menu doesn't open with FF59
-
Email changesIf you mean my forum logo importing over okay, not really. I looked through the source and did reupload to generate the new file. But some mail I send out for testing still wouldn't show the logo. So I removed the
<!-- IF logo.src -->
and hardcoded my forum logo in the template and added the title. Not sure what went wrong, but I didn't feel like debugging it. The conversion itself worked though and it made the newsite-logo-x50.png
. -
Email changesJust wanted to drop in and say thanks, loving the new default emails in 1.6. One little complaint the Hero Image is wayyy too big at least on 1080p. I changed its height to 100px from 300px and it looks a lot better and doesn't take up 1/3 of your screen.
Tweaked a few other things for myself, but the overall redesign is a very welcome change! Keep it up. Result:
-
Feeling the need for speed?nice, I still would like to see the option to no longer rely on cdn's for css (bootswatch), fonts (google) etc.
the option to easily switch those to selfhosting would be great especially with http2
-
Time to say goodbyeGood luck, I can totally agree with some of your reasons. If had a commercial forum with a bigger userbase, I wouldn't pick NodeBB in its current state. Don't get me wrong I enjoy using it for a hobby project, but tinkering to get basic stuff working isn't for everyone.
-
Remaking Chat of NodeBBas a temporary solution, you could just use email
-
Show us your rig!No window, so the inside is not really cleaned often.. GPU is right now really underpowered and next on my to upgrade list.
Here's the full partlist with the price at time of purchase:
https://de.pcpartpicker.com/list/xWFNhq -
No javascript? No problem!exciting, as someone who blocks js on all sites by default this is great in terms on usability!
keep it up -
Nginxjudging by your configs you haven't read either docs link I had sent you, don't expect people to help you if you don't bother reading the documentation..
-
NodeBB v1.5.2@vamsi-krishna said in NodeBB v1.5.2:
Im not able to update to 1.5.2
Getting a 404
https://docs.nodebb.org/en/latest/upgrading/index.html -
[nodebb-plugin-minecraft-integration] Minecraft Integration!@kundello yes
-
Nginxhttps://docs.nodebb.org/configuring/config/
if you still have issues post your files, obviously leaving out sensitive info and one can help you further
-
move things to the left on category pagewell the problem is your categories don't have icons, making them misaligned with the header and the rest of your site, the best fix would be hiding the image area imo
something like this
.page-categories .icon.pull-left { display: none; } .page-categories .categories>li .content h2, .category>ul>li .content h2 { margin: 0 0 0 12px; }
now the other option would be to make the black bar smaller, by adding margin on the left, but that looks weird
ul.categories [data-cid="1"]::before, ul.categories [data-cid="1"]::before { margin-left: 70px; }
-
Login Sessions always 127.0.0.1your site is https, but you are using http in the configs
"url":"http://board.domain.com",
needs to be"url":"https://board.domain.com",
this is the part that makes the ips not show up
proxy_set_header X-Forward-Proto http;
should be either
proxy_set_header X-Forwarded-Proto https;
or better
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
should be
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
theres some explanation for those headers here:
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-Protohttps://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-For
-
Excessive "invalid csrf token" on Login and RegisterJust to make sure, in Settings > Cookies is the Session cookie domain field blank or did you set your own value?
-
[nodebb-plugin-minecraft-integration] Minecraft Integration!@legoman99573 said in [nodebb-plugin-minecraft-integration] Minecraft Integration!:
As of NodeBB 1.5.x, I cannot connect to the server via NodeBB's end.
I had to regen the API keys in the admin panel and reset it on the gameservers, then the widgets I use worked again.