Topics don't display while user is logged in
-
For some reason topics do not display while logged in.
They work fine while not logged in. I cleared browser cache, and tried IE Firefox and Chrome.
This is a fresh install.
VPS Ubuntu 14.04 LAMP setup using Apache as a Proxy. I wonder if the proxy is the issue.Thank you for your time,
Tad -
Have you not given them permission to access the topic? Try going to manage categories and changing the viewing permissions for the categories.
-
I installed nginx and used it as a proxy. It seems to work now. I couldn't figure out what may have been wrong.
I tried older versions of NodeBB and that did not resolve the problem. I have a feeling it's something to do with apache and the way I was setting it up. I'm using virtualmin.
*Setup which did not work
Ubuntu 14.04
LAMP
VirtualminProxied using these settings in Virtualmin
MENU NAVIGATION: webmin -> server -> apache -> server name -> Edit Directives ->
Inserted the following
<Proxy *>
order deny,allow
allow from all
</Proxy>
ProxyPass /socket.io/1/websocket ws://127.0.0.1:4567/socket.io/1/websocketProxyPassReverse /socket.io/1/websocket ws://127.0.0.1:4567/socket.io/1/websocket
ProxyPass /socket.io/ http://127.0.0.1:4567/socket.io/
ProxyPassReverse /socket.io/ http://127.0.0.1:4567/socket.io/ProxyPass / http://127.0.0.1:4567/
ProxyPassReverse / http://127.0.0.1:4567/NGINX fixed my problem. I am including this information for others reference.