@vatsal Yes I'm sure "folder-name" : "public/folder-name" means you can use /plugins/your-theme-name/folder-name/whatever
The first parameter correspond to the name that will be used after theme-name/folder, while second parameter means this alias points to path.
Themes not showing, admin side
-
I installed some themes and they appear by plugins, but when i go to themes, they don't show up, instead it says checking for installed themes,
Any ideas? -
i am having this problem all over,
when i go to /manage/categories
it says
and it never connects -
That message usually means there was a crash and nodebb is restarting. Check your nodebb logs for any crashes and resolve those.
-
ha ha looks like i have the common
Looks like your connection to NodeBB was lost, please wait while we try to reconnect.
okay whats now? -
tried changing the config file to this, didn't help
{ "url": "http://something.com:4567", "secret": "xxxxxxxxxxxxxxxxxxxxx", "database": "mongo", "mongo": { "host": "127.0.0.1", "port": "27017", "username": "", "password": "", "database": "nodebb", "uri": "" }, "port": "4567" }
-
nginx config
server { listen 80; server_name whatever.com; 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"; } }
-
-
Not helping, anything else to try?
Btw when you write nodebb stop is the actual forum supposed to be down? Because by me i can still access it? -
Anyone ?
-
@qwerty yes, after running
./nodebb stop
, NodeBB should not be running.What did you try? Does it work when running with
./nodebb dev
?