NodeBB v0.7.3
-
@julian
I'm sure redis is installed...Clustering enabled: Spinning up 1 process(es). 18/8 15:28 [8904] - info: Time: Tue Aug 18 2015 15:28:14 GMT-0400 (EDT) 18/8 15:28 [8904] - info: Initializing NodeBB v0.7.3 18/8 15:28 [8904] - error: Unable to initialize Redis! Is Redis installed? Error :Cannot find module 'connect-redis' [cluster] Child Process (8904) has exited (code: 0, signal: null)
Edit: finally got it to work
-
I'm currently on 0.7.2 and want to upgrade to 0.7.3. Never done this before. After backing up everything, is this what I should do?
$ cd nodebb $ ./nodebb stop $ git pull $ ./nodebb upgrade
-
@henrywright Ok, latest commit in
v0.7.x
branch contains the fix for the broken./nodebb upgrade
call.If you want to upgrade, those are the steps, although also
cp -r node_modules/ node_modules_bk
just to back up the node_modules folder.Let me know if it works
-
Just an FYI:
I used the same steps as @henrywright a few hours ago and works for me. So @julian if something broke in broke after my last post to the thread like 2hrs ago, You can use that as a time stamp. I was probably one of the first people to upgrade.
-
One thing I did have to do was clear my browsing data because I was getting some 502 Nginx error pages show up. Since clearing all browsing data everything has been fine.
-
Setting homepage as recent renders the following error
Internal error. Oops! Looks like something went wrong! / Object # has no method 'recent'
Navigating to URL/recent renders the page just fine.
Full ST
18/8 18:27 [26471] - error: / TypeError: Object #<Object> has no method 'recent' at Controllers.home (/home/a_5mith/35hz/src/controllers/index.js:45:27) at Layer.handle [as handle_request] (/home/a_5mith/35hz/node_modules/express/lib/router/layer.js:95:5) at next (/home/a_5mith/35hz/node_modules/express/lib/router/route.js:131:13) at /home/a_5mith/35hz/src/middleware/middleware.js:74:3 at Object.async.each (/home/a_5mith/35hz/node_modules/async/lib/async.js:118:20) at middleware.pluginHooks (/home/a_5mith/35hz/src/middleware/middleware.js:70:8) at Layer.handle [as handle_request] (/home/a_5mith/35hz/node_modules/express/lib/router/layer.js:95:5) at next (/home/a_5mith/35hz/node_modules/express/lib/router/route.js:131:13) at middleware.pageView (/home/a_5mith/35hz/src/middleware/middleware.js:62:4) at Layer.handle [as handle_request] (/home/a_5mith/35hz/node_modules/express/lib/router/layer.js:95:5)
-
@BDHarrington7 said:
nbbpm.compatibility is using semver syntax, correct?
Yes, a semver range.
If your plugin works with 0.7.0 and up, use
^0.7.0
, you'll have to trust us not to introduce breaking changes in the0.7.x
branchIf it is compatible with 0.6.1 and up, for example, use
>= 0.6.1 ^0.7.0
-
error after upgrade. im using mongo database.
[cluster] Child Process (6671) has exited (code: 0, signal: null) at Function.Module._load (module.js:278:25) at Module.require (module.js:365:17) at require (module.js:384:17) at module.init (/root/nodebb/src/database/mongo.js:52:18) at /root/nodebb/node_modules/async/lib/async.js:653:23 at fn (/root/nodebb/node_modules/async/lib/async.js:638:34) at Immediate._onImmediate (/root/nodebb/node_modules/async/lib/async.js:554:34) at processImmediate [as _immediateCallback] (timers.js:367:17)```
-
I have always git pull master, and always has this
Error : cannot find module ...
. I did try.\nodebb upgrade
,npm install
, but nothing works. Even changing branchgit checkout v0.7.2
still showingcannot find module
.The only thing work for me is, to remove all node_modules then install it back. After that, I did npm install redis and connect-redis.
// remove all node_modules rm -rf node_modules/ // re-install dependencies npm install // install redis and redis-server npm install redis npm install connect-redis
-
@fakhrullah Thanks for your feedback Turns out it was a problem with our invocation of the npm install command, so I've replaced it for v0.7.3, and republished. Hopefully, there should no longer be any future problems!
-
-
@julian said:
If you are a @3rd-Party-Developers, and your plugin does not have
nbbpm.compatibility
in itspackage.json
, your plugin will no longer appear in ACP/PluginsReturning from a break and wondering where all those plugins went. xD
Love it, though. -
Good to know, i am helping. I always afraid to write something, in case i'm wrong. Now I know, I am Genius.