Please look at my category privileges settings -
But,
- Registered users are able to create new Topics !
- but, they are not able to see the Posts under the Topics !!
What gives ?
Please look at my category privileges settings -
But,
What gives ?
I AM testing as a 'Regular' user
I want the registered-users and Guests to access the Category/Topics. I want registered-users to be able to reply to the Posts in this Category.
But I do not want them to be able to create new Topics in this Category.
So, I think the Settings are correct, no ?
Please look at my category privileges settings -
But,
What gives ?
@pichalite said in How to delete all topics from a Category ?:
delete/purging topics from the client side does not remove the category
You are right....so I am left with a 'fake' category which I disable anyway
@pichalite said in How to delete all topics from a Category ?:
@assamese how are you moving all the topics to the "fake category"
@pichalite I was not ignoring you...but I do not remember how I did it
and, the Chrome (Developer Tools) console looks like this -
When the user navigates to http://<mylandingpage.com>/bb , the browser screenshot looks like this -
I have a similar problem with nginx configuration (and, redirection) - https://community.nodebb.org/topic/8955/where-is-the-htaccess-file/1
Any help will be apreciated
SD
I have a landing page (eg. mylandingpage.com) from where a link takes my users to my NodeBB which is hosted on a different server eg. some-ip-address:4567 .
After the browser travels to the NodeBB -page, I want the browser address to display <mylandingpage>.com/bb as opposed to some-ip-address:4567How do I solve this ?
@pichalite - I did the changes to NINX conf, it does not seem to work.
Here is the relevant portion the nginx.conf file where <mylandingpage>.com is hosted -
server_name <mylandingpage>.com;
location / {
root html;
index index.html index.htm;
}
location /bb {
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://<ip-address-of-nodeBB-host>:4567/;
proxy_redirect off;
# Socket.IO Support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
My nginx version is: nginx/1.10.1
I changed the config.json file for NodeBB -
{
"url": "http://<mylandingpage>.com/bb",
..
}
When the user navigates to http://<mylandingpage>.com/bb , the browser shows -
/ Not Found
You seem to have stumbled upon a page that does not exist. Return to the home page.