@pitaj for example "สวัสดี" it will change to "สว-สด-"
another example "ทุกอย่าง" will change to "ท-กอย-าง"
Pakorn
Posts
-
permalink url option -
permalink url option@pitaj said:
Slug looks like garbage in Thai? What exactly is the problem with it?
Thai has characters above and under unlike english or chinese in which Thai use that place for vow
On nodeBB, if the word has letter above or under normal letter, it will replace letter with "-"
-
permalink url optionso sad that it will take a long time for nodeBB to implement post-id instead of post-title.
I will have to move to other platform even though i like nodeBB a lot but cannot really accept when slug looks like garbage in Thai. -
permalink url optionI would like to request an option for permalink url to be like the one in wordpress which you can choose whether to have slug based on post-id or post-title. This will solve unicode problem and reduce table size.
-
Unicode slugs? Yes please!Unicode slug is not fully supported Thai. Upper and lower characters are not showing on the url, eg. "ข่าวและบทวิเคราะห์" -> "ข-าวและบทว-เคราะห"
Can i change url to post id instead? -
need help on nginx server block@aixnr Thanks u
It works now -
need help on nginx server block@aixnr Thanks. I will try it now
-
need help on nginx server blockDuring nodBB setup, I entered hostname as "forum.abc.com" so i should change server block to this?
server { listen 80; server_name forum.abc.com; location / { proxy_pass http://forum.abc.com:4567; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; } }
-
need help on nginx server block@aixnr does it mean i dont have to include this section?
server {
listen 80;
server_name forum.abc.com;
root /home/abc/abcforum;
access_log /var/log/nginx/forum.abc.com.access.log;
error_log /var/log/nginx/forum.abc.com.error.log;
#include global/common.conf;
} -
Working smtp / mandrill emailer for 0.7-devAfter several restart. The plugin works now.
-
Working smtp / mandrill emailer for 0.7-devhas this problem been fixed yet in current version? I clicked Activate but did not see any new tab for mandrill plugin setting
-
need help on nginx server blockmy current block is as followed
server {
listen 80;
server_name forum.abc.com;
return 301 $scheme://forum.abc.com$request_uri;
}URL: add a permanent redirect if required.
server {
listen 80;
server_name forum.abc.com;
root /home/abc/abcforum;
access_log /var/log/nginx/forum.abc.com.access.log;
error_log /var/log/nginx/forum.abc.com.error.log;
#include global/common.conf;
}I copied and modified it from my main wordpress server block.
Currently i can access forum.abc.com:4567 but i cant access it at forum.abc.com
How do I fix it?Thank you,
-
Typo in MongoDB installationTypo in MongoDB installation
https://docs.nodebb.org/en/latest/configuring/databases/mongo.html#step-7-configure-mongodb
" nano /etc/mongodb.conf " should be "nano /etc/mongod.conf"
"service mongodb restart" should be "service mongod restart" -
Newbie Q - Installing nodeBB on digitaloceanThank you!!
-
Newbie Q - Installing nodeBB on digitaloceanThank you. Which DB should I use? Redis or MongoDB?
-
Newbie Q - Installing nodeBB on digitaloceanI am running 2 very small Wordpress Blogs on Ubuntu 14.04 LEMP with 1GB RAM on digitalocean
I have little knowledge on this. Please bear with me.
- Will my current server configuration be ok to run nodeBB? It will not have many people. Mainly I want to use it as article storage and share with my friends.
-Is there any guide on how to install nodeBB under this configuration? nodeBB does not have to link with wordpress. It will run under "/forum" or "forum.aaaa.com"
THank you.