Oh yeah just realized reading it again 😛 sorry
Check out this is you need better hosting 😄
https://community.nodebb.org/topic/3630/nodebb-hosting-option-for-people-interested
i have installed node.js but i dont know how to install nodebb and which command to fill in node.js commant starter ?
can i install on shared hosting (php, mysql).
do i need to tell my hosting provider that, they should install node.js.
how can i install nodebb on my windows 7 pc local like php or another source.
NodeBB requires at least a VPS. We have not tested installation of it on shared providers, but if they can grant you ssh access, and can install the required dependencies, then I do not see why it would not work.
also, have a look here and see if this helps:
http://try.nodebb.org/topic/151/anyone-install-with-success-on-a-shared-host
thanks @julian and @psychobunny
for sharing link
Good luck with your installation! Let us know how it goes.
I want to install nodeBB. I've cloned the repository and when I type "node app.js --setup" says:
Error: Cannot find module 'nconf'
at Function.Module._resolveFilename (module.js:527:15)
at Function.Module._load (module.js:476:23)
at Module.require (module.js:568:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (C:\Users\catalin.marcu\NodeBB\app.js:28:13)
at Module._compile (module.js:624:30)
at Object.Module._extensions..js (module.js:635:10)
at Module.load (module.js:545:32)
at tryModuleLoad (module.js:508:12)
at Function.Module._load (module.js:500:3)
What can I do?
@catalin for me it helped doing npm install nconf
thank you, @alexsir. It works but I have another error...
TypeError: Cannot read property 'node' of undefined
at Object.versionCheck (C:\Users\catalin.marcu\Downloads\NodeBB-master\NodeBB-master\src\prestart.js:71:26)
at Object.<anonymous> (C:\Users\catalin.marcu\Downloads\NodeBB-master\NodeBB-master\app.js:52:10)
at Module._compile (module.js:624:30)
at Object.Module._extensions..js (module.js:635:10)
at Module.load (module.js:545:32)
at tryModuleLoad (module.js:508:12)
at Function.Module._load (module.js:500:3)
at Function.Module.runMain (module.js:665:10)
at startup (bootstrap_node.js:187:16)
at bootstrap_node.js:608:3
@catalin use ./nodebb setup
, not node app --setup
Yes, it works. Thanks!
I have a new question. Can I make more groups to have just separate discussions and a group will cannot read the other's group discussions?
I mean each group to have its own wall
@catalin yes you can. You just have to create a category for each group, and change the permissions for those categories so only the respective group can access, read, and write in it.
@pitaj That's it! Thanks!
@pitaj But can this be done automatically by an api / plugin?
I mean:
I want to put this forum on my website. On my website I will have users who will register / log in.
These users on my site, will be divided into groups.
@catalin you can automatically create nodebb accounts for accounts on your website. Look up "nodebb plugin session sharing".
Automating the rest of that though would require a custom plugin.
@pitaj Ok. I understand. Thank you much!
@pitaj I have another question. Can to show to a user just users who is from his group?
And I want to show to a user only the group he belong to. Is this possible? Thanks!