Cannot able to login on phone. In pc working fine
-
Cannot able to login in mobile/pc
Getting error like csrf invalid
Is it because of Google ReCaptcha?
-
Hi guys
I fixed it by changing nginx config
One of the post from community helped me out
Here is the solution reference https://community.nodebb.org/topic/15302/cannot-login-to-nodebb-welcome-back-guestThats because of not added in nginx config file
proxy_set_header X-Forwarded-Proto https;
Issue resolved
Thank you -
My laptop is already logged in.
No other device can able to login
Tried by rebuild and restart. No useAlso remove spam gone plugin. Through that i was added google ReCaptcha.
Still not able to login
-
nginx configure file under /etc/nginx/conf.d/
with subdomain named file is like thisserver { ## listen for ipv4; this line is default and implied #listen [::]:80 default_server ipv6only=on; ## listen for ipv6 server_name forum.bustudymate.in; location / { proxy_pass http://localhost:4567; proxy_set_header X-Real-IP $remote_addr; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/forum.bustudymate.in/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/forum.bustudymate.in/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot } server { if ($host = forum.bustudymate.in) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name forum.bustudymate.in; return 404; # managed by Certbot }
Other than this i havent created any files under sites-available or enabled folder.
does it causing the issue?
-
The session cookie domain is also empty by default
while clicking login after filling in credentials fraction of seconds it shows a "Login Unsuccessful - forbidden" message and then it shows " we are unable to log you in, likely due to an expired session. please try again"
-
Hi guys
I fixed it by changing nginx config
One of the post from community helped me out
Here is the solution reference https://community.nodebb.org/topic/15302/cannot-login-to-nodebb-welcome-back-guestThats because of not added in nginx config file
proxy_set_header X-Forwarded-Proto https;
Issue resolved
Thank you -
@Varun-Ganesh-D Glad you got it sorted out.
If anyone else is having similar issues, please consult the nginx configuration page in the NodeBB Documentation
-