That's odd, what's the link for the picture in the top corner, and is it different from your profile picture in accounts page?
What about a hard refresh, does it cok back then?
Package.json is missing in the Root folder when checking out a fresh copy. I allways do a fresh install when updating and copy the settings and files.
Is the new install instructions to copy package.json to the root and then run npm install --production ?
We want the node_modules/ folder in the root right? Not in the install directory?
My flow
Then
npm install --production
What does the --production flag do? Never used it before!
git clone https://github.com/nodebb/nodebb.git -b v1.7.x
cp old_config.json nodebb/config.json
cd nodebb
./nodebb upgrade
./nodebb
automatically copies package.json
and installs dependencies, so no need for npm install
at all.
Ok, Thanks