What version of nodebb are using ? Can you please tell me what's the result of
npm ls nodebb-theme-vanilla
What version of nodebb are using ? Can you please tell me what's the result of
npm ls nodebb-theme-vanilla
I have got the same problem as @Tanner. I'm running the version 0.5.2, disabled all plugins, restarted nodebb and cleared cache.
I even tried a git reset --hard HEAD, but not all "save" buttons works in the ACP. It seems to actually works in core options and some plugins, but not in many plugins settings like Facebook SSO, Steam SSO, Twitter SSO, Blog Comments.
Any idea what could cause this?
Sorry I don't understand neither speak german.
I guess you're using Apache, so you need to use it as a proxy for nodebb. Install mod_proxy_wstunnel for apache 2.2 https://www.amoss.me.uk/2013/06/apache-2-2-websocket-proxying-ubuntu-mod_proxy_wstunnel/
and add this for example in your vhost file in apache (/etc/apache2/sites-enabled/000-default ?):
<VirtualHost *:80>
ServerName yourdomain.org
ProxyRequests off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /socket.io/1/websocket ws://127.0.0.1:4567/socket.io/1/websocket retry=0
ProxyPassReverse /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/ retry=0
ProxyPassReverse /socket.io/ http://127.0.0.1:4567/socket.io/
ProxyPass / http://127.0.0.1:4567/ retry=0
ProxyPassReverse / http://127.0.0.1:4567/
</VirtualHost>
Don't worry you don't bother me @peter. You simply need to execute those commands:
./nodebb stop
git fetch
git checkout master
git merge origin/master
./nodebb upgrade
./nodebb start
What is the "url" in config.json?
You can try.
npm remove nodebb-theme-vanilla
npm install nodebb-theme-vanilla
Happy Easter guys!
Ok, well you are using the master branch with 0.7.0 and the plugin spam-be-gone is not compatible with it I guess. About flip theme it seems that it's not compatible with 0.7.0 as well. For the lavender theme, you can update it to its lattest version with npm.
npm -i [email protected]