@jiangcaiyang It works if you do it right. It doesn't take LESS variables, but it does work. Odds are the less styles have higher specificity, so your custom CSS rules are not applied. Use !important or something instead. It will certainly benefit you to not be held back due to incompatibility with newer versions of NodeBB in the future.
Can't Register or Login In
-
I just created a nodebb forum and I cant seem to create a user nor login.
http://community.rantahustudios.com/ -
Try running ./nodebb dev and then try to login - do you see any issues?
Which version of NodeBB are you running, and which OS are you running it on?
-
@Ted said:
./nodebb dev
Nothing shows up when I try to login in or create a user
I'm using Debian 7. I'm not sure what version of NodeBB i'm using but I clone it from github
-
@Rantahu, just to be sure, did you follow using these instructions?
https://docs.nodebb.org/en/latest/installing/os/debian.html -
@Ted Yea I did
-
I used ./nodebb watch and got
warn: Route requested but not found: /api/recent.rss?=1409107868392
warn: Route requested but not found: /api/recent.rss?=1409107868396 -
I have exactly the same problem after a fresh install on ubuntu.(https://community.nodebb.org/topic/2301/error-installation-on-ubuntu/2)
It seems that this post relate the same problem : https://community.nodebb.org/topic/2303/nodebb-buttons-don-t-work/3
I search a solution without success for this moment.
A problem with the version "v0.5.0-2" ?
-
@nweber Yeah, none of the buttons are working that have to deal with editing or writing files. I maybe a permission problem.
-
@Rantahu Well, that's quite weird. It seems to be dropping to xhr or json polling. Are you sure you are forwarding websockets correctly through your nginx proxy?
-
@julian Yeah I believe this is correct
server {
listen 80;server_name community.rantahustudios.com; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 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"; }
}
-
And the version of nginx is > 1.3.13?
-
@julian I'm using 1.2 apparently. I'll update it now.
-
@julian Problem fixed. Never thought it would issue would be so simple. I thought I was running Ngmix 1.6.1. lol thnx for the help.
-
Glad I could help