I think @julian or @psychobunny mentioned it somewhere... Anyway, if I'm correct, then their post stated that it will be released in late June.
markkus
Posts
-
Tentative date for release of 0.5x -
New to NodeBB: how to change font ?Tip: You can also change the font easily under the Custom CSS section in ACP.
Example:
@import url(http://fonts.googleapis.com/css?family=Lato:300,400); body { font-family: "Lato", sans-serif !important; }
-
Putting a NodeJS webapi onto the same server as NodeBBWell... If you already have NodeBB running on port 80 without nginx/Apache proxy, then you can not assign another service on the port as well. I recommend you to set up an nginx/Apache proxy for NodeBB and create virutal hosts for each service you want to run on port 80 (this way you can run multiple services/sites on port 80).
-
REDIS BACKUPJust make a copy of it.
cd /var/lib/redis/
cp dump.rdb /place/where/you/store/files/dumpBackup.rdb
Btw, before doing that make sure you are in
sudo bash
. -
Grabbing avatars from an external URLHey,
I'd like to know if there exists a method to alter the way how avatars are automatically assigned to users (like Gravatar). For example, let's say I have an user named Foo and his avatar is located on a remote server & domain, on the URL domain.com/avatar/Foo.png. Basically, all I need is that NodeBB would automatically take the avatar from a specified URL and assign it as the user's avatar when he/she registers for the first time.
-
Question regarding multiple instances of NodeBB on dedicated serverYou can't run multiple NodeBB instances on the same port (4567), so each instance should have its own port assigned (and different system path too). As for setting up the proxy, I suggest you to use nginx. Each instance should have its own nginx virtual host set up which then routes to the corresponding NodeBB instance.
However, I'm not sure about the database. Maybe you can run all the instances on the same Redis db, maybe not...
-
hundreds of polling requestsUpdated to master & works like a charm ;).
-
Suggest a Cpanel look alike for my VPSI agree with @planner, however i came across this fancy cPanel look-alike yesterday. Furthermore, it uses the Twitter-Bootstrap framework. http://ajenti.org
-
Issues with RedisI managed to fix the problem by uninstalling the
redis-server
service that I had installed viaapt-get
& manually installing the latest redis stable build which has an updated config to allow supervisors likesystemd
to supervise the process.To anyone who's encountering the same issues, here's a decent tutorial on how to get Redis up and running on Ubuntu 16.04.
-
Disabling tagsJust wondering if there will be an option to disable tags in the next NodeBB release?
-
Happy Birthday Julian!Happy birthday Julian!
-
Some problem with plugins@Loethen-Shen
If you are usingnodebb-plugin-emoji-extended
then there is a 'dirty' fix for that.
Navigate to your Emoji plugin folder and openindex.js
.
Example path:/home/nodebb/node_modules/nodebb-plugin-emoji-extended/index.js
.Once you've opened the file, find a part where it states
emojiPath="http://127.0.0.1:4567/plugins/nodebb-plugin-emoji/images/"
.
Set this to something like thisemojiPath="http://forum.domain.com/plugins/nodebb-plugin-emoji-extended/images"
Of course, this will only work if you are running NodeBB with nginx or Apache proxy.
-
How to embed and use custom fontIf you want to use custom fonts, you should upload the font files (.woff etc.) into public folder and still declare them in Custom CSS.
However, I can't give you any examples as I've never tried it myself.
Perhaps this SO post can help...
http://stackoverflow.com/questions/12812441/how-do-i-use-woff-fonts-for-my-website -
[nodebb-plugin-calendar] Fully featured calendar plugin for NodeBB - Testers needed@Master-Antonio said:
How install a version 0.2.0 ?
Write comands please.
So , i have translated plugin in Italian , link in post of before.Umm... I guess you can install a specific version with this command.
npm i [email protected]
-
[nodebb-plugin-calendar] Fully featured calendar plugin for NodeBB - Testers neededWell, then it seems like @pitaj hasn't pushed version 0.2.0 to npm yet.