prompt to choose a name wont appear
the-ashh opened this issue · 8 comments
im running a website that i want to run hack.chat, but when i go to a server, the prompt to login wont appear. if you want to see, cooler9711.com:8081/?server
The web console says "Firefox can’t establish a connection to the server at ws://cooler9711.com:6060/."
Your websocket server is not up.
is there a guide on how to set up my websocket server?
Server
node v0.12 or higher is required to run the server.
git clone https://github.com/AndrewBelt/hack.chat.git
cd hack.chat
npm install
- Copy
config-sample.json
toconfig.json
and edit if needed.npm start
ornode server.js
by doing node server.js
you start your server. What is the output of that?
"Not implemented" means the WebSocket server is successfully running at that address. You just can't view it because it's not serving anything on HTTP. Either change the source code of the client to point to port 8080, or change the WebSocket port to 6060 in the server config.
@AndrewBelt @M4GNV5 thank you guys for your help. I finally got it up and running!