@julian said:
Seems to be an issue with the vanilla theme only. Have you tried the Lavender themes?
No, I haven't problem with the Lavander theme.
What version of NodeBB are you running?
What OS are you running it on?
Is this an issue that has occurred on an existing install, or on a new one?
@Punkbob, when you were upgrading, did you follow these steps?
I also have the same issue. New install v0.5.0 although I may have missed a step in the install process.
NodeBB v0.5.0
node.js v0.10.32
Redis 2.8.4 32bit
Ubuntu 14.04 32bit
edit - the admin panel is working
I'm running a digital ocean test droplet. Nginx and Apache are only required for proxy requests, correct?
I figured out my problem. I set up forever incorrectly. I think somehow after a server reboot it didn't load NodeBB the way it should. Is this possible? I built maybe 20 instances to figure out what caused my problem.
Thanks for the hard work on the project!
I'm checking back in from a while ago. Since the first post I've moved VPS's from digital ocean to ovh and now I'm moved to vpsdime. I highly recommend them. They say the large storage vps IO is too slow for production but so far it has seriously been 10x faster in disk benchmarks and 20% faster in cpu calculations.
Anyway, back to what I was going to say.
I started nodebb using a root cron
@reboot forever start /home/blue/nodebb/app.js
turns out this gave me the button errors.
This method works without issues
@reboot cd /home/blue/nodebb && forever start app.js
Interesting huh? Hopefully this helps someone avoid the headaches I've encountered. Any ideas why this may be?